Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class CsvFileWriter extends AbstractFileWriter implements FileWriterInterface |
||
11 | { |
||
12 | public const DELIMITER = ','; |
||
13 | |||
14 | /** |
||
15 | * @param string $filePath |
||
16 | * @param array $data |
||
17 | * @param bool $append |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function write($filePath, $data, $append = false) |
||
38 |