Conditions | 5 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 5 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
22 | 46 | public function __construct($number) |
|
23 | { |
||
24 | 46 | $number = is_int($number) ? (string)$number : $number; |
|
25 | |||
26 | 46 | if (!is_string($number) || !ctype_digit($number) || mb_strlen($number) !== 1) { |
|
27 | 22 | throw new \InvalidArgumentException('Expected a string of length 1'); |
|
28 | } |
||
29 | |||
30 | 24 | $this->value = $number; |
|
31 | 24 | } |
|
32 | |||
41 |