Total Complexity | 1 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
25 | class ArrayUtils extends AbstractStdlib |
||
26 | { |
||
27 | /** |
||
28 | * Write the array of passed data to a file as a PHP structure |
||
29 | * |
||
30 | * @param string $filename |
||
31 | * @param array $values |
||
32 | * |
||
33 | * @return int |
||
34 | */ |
||
35 | 1 | public static function varExportToFile(string $filename, array $values): int |
|
62 |