comparison vendor/symfony/translation/Dumper/CsvFileDumper.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
42 } 42 }
43 43
44 /** 44 /**
45 * Sets the delimiter and escape character for CSV. 45 * Sets the delimiter and escape character for CSV.
46 * 46 *
47 * @param string $delimiter delimiter character 47 * @param string $delimiter Delimiter character
48 * @param string $enclosure enclosure character 48 * @param string $enclosure Enclosure character
49 */ 49 */
50 public function setCsvControl($delimiter = ';', $enclosure = '"') 50 public function setCsvControl($delimiter = ';', $enclosure = '"')
51 { 51 {
52 $this->delimiter = $delimiter; 52 $this->delimiter = $delimiter;
53 $this->enclosure = $enclosure; 53 $this->enclosure = $enclosure;