Conditions | 4 |
Paths | 4 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
22 | 72 | public function __construct($gender) |
|
23 | { |
||
24 | 72 | $gender = is_string($gender) ? (int)$gender : $gender; |
|
25 | |||
26 | 72 | if (!is_int($gender) || !in_array($gender, range(1, 8), false)) { |
|
27 | 22 | throw new \InvalidArgumentException('Unknown gender'); |
|
28 | } |
||
29 | |||
30 | 50 | $this->value = (string)$gender; |
|
31 | 50 | } |
|
32 | |||
50 |