Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
19 | public function __construct(array $hours) { |
||
20 | 1 | array_walk($hours, function(int &$value) { |
|
21 | 1 | if($value < 10) { |
|
22 | 1 | $value = "0" . (string) $value; |
|
23 | } |
||
24 | 1 | $value = (string) $value; |
|
25 | 1 | }); |
|
26 | /** @var string[] $hours */ |
||
27 | 1 | $hours = array_unique($hours); |
|
28 | 1 | $this->hours = $hours; |
|
29 | 1 | } |
|
38 | ?> |