Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function export($file, $translations) |
||
30 | { |
||
31 | $bytes = false; |
||
32 | |||
33 | if (pathinfo($file, PATHINFO_EXTENSION) === 'yml') { |
||
34 | $ymlDumper = new Dumper(); |
||
35 | $ymlContent = ''; |
||
36 | $ymlContent .= $ymlDumper->dump($translations, 10); |
||
37 | $bytes = file_put_contents($file, $ymlContent); |
||
38 | } |
||
39 | |||
40 | return ($bytes !== false); |
||
41 | } |
||
42 | } |
||
43 |