Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | trait CounterFields |
||
13 | { |
||
14 | use GettableName; |
||
15 | |||
16 | /** @var int */ |
||
17 | protected $value; |
||
18 | |||
19 | /** @var int */ |
||
20 | protected $step; |
||
21 | |||
22 | /** |
||
23 | * @return int |
||
24 | */ |
||
25 | 6 | public function getStep(): int |
|
26 | { |
||
27 | 6 | return $this->step; |
|
28 | } |
||
29 | |||
30 | /** |
||
31 | * @return int |
||
32 | */ |
||
33 | 9 | public function getValue(): int |
|
36 | } |
||
37 | } |
||
38 |