Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function actionToArray() { |
||
20 | $arrayResult = $this->convertSource(); |
||
21 | $config = str_replace(' ', ' ', str_replace(')', ']', str_replace(["\n" . ' array (', 'array ('], '[', var_export($arrayResult, true)))); |
||
22 | $result = <<<PHP |
||
23 | <?php |
||
24 | return $config; |
||
25 | PHP; |
||
26 | |||
27 | file_put_contents(__DIR__ . '/../data/categories.php', $result); |
||
28 | } |
||
29 | |||
52 | } |