Conditions | 4 |
Paths | 4 |
Total Lines | 15 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4.7691 |
Changes | 0 |
1 | <?php |
||
15 | 6 | public static function arrayDepth(array $array) { |
|
16 | 6 | $max_depth = 1; |
|
17 | |||
18 | 6 | foreach ($array as $value) { |
|
19 | 6 | if (is_array($value)) { |
|
20 | $depth = Utility::arrayDepth($value) + 1; |
||
21 | |||
22 | if ($depth > $max_depth) { |
||
23 | 2 | $max_depth = $depth; |
|
24 | } |
||
25 | } |
||
26 | 4 | } |
|
27 | |||
28 | 6 | return $max_depth; |
|
29 | } |
||
30 | |||
32 | } |