1 | <?php |
||
12 | class Csv extends Generator implements GeneratorInterface |
||
13 | { |
||
14 | use HeadersGeneratorTrait; |
||
15 | use CsvTrait; |
||
16 | |||
17 | public static $options = [ |
||
18 | 'includeHeaders' => false, |
||
19 | 'delimiter' => ",", |
||
20 | 'enclosure' => '"', |
||
21 | 'escape_char' => "\\" |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * {@parentDoc}. |
||
26 | */ |
||
27 | public static function toString(Translations $translations, array $options = []) |
||
56 | } |
||
57 |