Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Metallizzer committed Oct 15, 2019
1 parent 59ddd28 commit ed0a601
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions src/Console/stubs/bench.stub
Original file line number Diff line number Diff line change
Expand Up @@ -7,46 +7,34 @@ use Metallizzer\Bench\Benchmarks\AbstractBench;
class DummyClass extends AbstractBench
{
/**
* The benchmark name.
*
* @var string
* {@inheritdoc}
*/
public $name = '';

/**
* The benchmark description.
*
* @var string
* {@inheritdoc}
*/
public $description = '';

/**
* Number of benchmark loop cycles.
*
* @var int
* {@inheritdoc}
*/
public $loops = 1000;

/**
* Subjects used during benchmarking.
*
* @var array
* {@inheritdoc}
*/
public $subjects = [];

/**
* This method is executed before the benchmark starts.
*
* @return mixed
* {@inheritdoc}
*/
public function runBefore()
{
}

/**
* This method is executed after the benchmark ends.
*
* @return mixed
* {@inheritdoc}
*/
public function runAfter()
{
Expand Down

0 comments on commit ed0a601

Please sign in to comment.