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