| 1 | <?php |
||
| 19 | final class CsvWriter implements WriterInterface |
||
| 20 | { |
||
| 21 | private $delimiter; |
||
| 22 | private $withHeader; |
||
| 23 | |||
| 24 | 4 | public function __construct(string $delimiter, bool $withHeader) |
|
| 33 | |||
| 34 | 3 | public function write(SpreadsheetInterface $spreadsheet): FileInterface |
|
| 53 | |||
| 54 | 3 | private function buildFile(SheetInterface $sheet): FileInterface |
|
| 79 | } |
||
| 80 |