Conditions | 4 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 4 |
1 | <?php |
||
88 | 40 | private function validate($pointer) |
|
89 | { |
||
90 | 40 | if ($pointer === '') { |
|
91 | 18 | return; |
|
92 | } |
||
93 | |||
94 | 40 | if (!is_string($pointer)) { |
|
95 | 2 | throw InvalidPointerException::invalidType(gettype($pointer)); |
|
96 | } |
||
97 | |||
98 | 38 | if (strpos($pointer, '/') !== 0) { |
|
99 | 2 | throw InvalidPointerException::invalidFirstCharacter(substr($pointer, 0, 1)); |
|
100 | } |
||
101 | 36 | } |
|
102 | } |
||
103 |