| Conditions | 4 |
| Paths | 2 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | 9 | public function getValueInPath(array $path) |
|
| 53 | { |
||
| 54 | 9 | $array = $this->array; |
|
| 55 | |||
| 56 | do { |
||
| 57 | 9 | $step = array_shift($path); |
|
| 58 | 9 | if (! is_array($array) || ! array_key_exists($step, $array)) { |
|
| 59 | 4 | return null; |
|
| 60 | } |
||
| 61 | |||
| 62 | 7 | $array = $array[$step]; |
|
| 63 | 7 | } while (! empty($path)); |
|
| 64 | |||
| 65 | 5 | return $array; |
|
| 66 | } |
||
| 67 | } |
||
| 68 |