Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Writer extends CsvAbstract implements WriterInterface |
||
14 | { |
||
15 | /** |
||
16 | * Writer constructor. |
||
17 | * |
||
18 | * @param string $file |
||
19 | * @param string $separator |
||
20 | * @param string $enclosure |
||
21 | * @param string $escape |
||
22 | * @param string $mode |
||
23 | */ |
||
24 | public function __construct( |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @inheritdoc |
||
36 | */ |
||
37 | public function writeLine(RowInterface|array $row): bool |
||
44 |