1 | <?php |
||
12 | class Csv extends Extractor implements ExtractorInterface |
||
13 | { |
||
14 | use HeadersExtractorTrait; |
||
15 | use CsvTrait; |
||
16 | |||
17 | public static $options = [ |
||
18 | 'delimiter' => ",", |
||
19 | 'enclosure' => '"', |
||
20 | 'escape_char' => "\\" |
||
21 | ]; |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public static function fromString($string, Translations $translations, array $options = []) |
||
53 | } |
||
54 |