Conditions | 4 |
Paths | 4 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.25 |
Changes | 0 |
1 | <?php |
||
68 | 1 | public function convertToPHP($value) |
|
69 | { |
||
70 | 1 | if ($value === null) { |
|
71 | return null; |
||
72 | } |
||
73 | |||
74 | 1 | if ($value === $this->true_value) { |
|
75 | 1 | return true; |
|
76 | } |
||
77 | |||
78 | 1 | if ($value === $this->false_value) { |
|
79 | 1 | return false; |
|
80 | } |
||
81 | |||
82 | throw new InvalidArgumentException("unexpected value: " . print_r($value)); |
||
83 | } |
||
85 |