| Conditions | 6 |
| Paths | 6 |
| Total Lines | 20 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 2 |
| CRAP Score | 22.9396 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public static function testEmpty($array) |
||
| 24 | { |
||
| 25 | 1 | foreach ($array as $key => $value) { |
|
| 26 | if (is_array($value)) { |
||
| 27 | if (!self::testEmpty($value)) { |
||
| 28 | return false; |
||
| 29 | } |
||
| 30 | } else { |
||
| 31 | if ($value) { |
||
| 32 | return false; |
||
| 33 | } |
||
| 34 | |||
| 35 | if (in_array($value, [0, '0', false], true)) { |
||
| 36 | return false; |
||
| 37 | } |
||
| 38 | } |
||
| 39 | } |
||
| 40 | |||
| 41 | 1 | return true; |
|
| 42 | } |
||
| 43 | |||
| 67 |