Total Complexity | 7 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 89.47% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class Debug |
||
8 | { |
||
9 | /** |
||
10 | * Export variables omitting array keys that are strictly numeric. |
||
11 | * |
||
12 | * By default, will output result |
||
13 | * |
||
14 | * @return string string representation of variable |
||
15 | */ |
||
16 | 6 | public static function export(mixed $data, bool $return = false, int $level = 0): string |
|
46 |