Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
12 | 26 | public function __construct(?string $name = null, ?int $step = null, int $initialValue = 0) |
|
13 | { |
||
14 | 26 | parent::__construct($name, $step, $initialValue); |
|
15 | 26 | $this->setBindings( |
|
16 | 26 | SimpleCounterReport::class, |
|
17 | 26 | SimpleCounterReportFormatter::class |
|
18 | ); |
||
21 |