delimiter = $delimiter; return $this; } /** * Return delimiter * @return string */ public function getDelimiter() { return $this->delimiter; } /** * Set enclosure * @param string $enclosure * @return ExporterConfig */ public function setEnclosure($enclosure) { $this->enclosure = $enclosure; return $this; } /** * Return enclosure * @return string */ public function getEnclosure() { return $this->enclosure; } /** * Set escape * @param string $escape * @return ExporterConfig */ public function setEscape($escape) { $this->escape = $escape; return $this; } /** * Return escape * @return string */ public function getEscape() { return $this->escape; } /** * Set newline * @param string $newline * @return ExporterConfig */ public function setNewline($newline) { $this->newline = $newline; return $this; } /** * Return newline * @return string */ public function getNewline() { return $this->newline; } /** * Set from-character set * @param string $fromCharset * @return ExporterConfig */ public function setFromCharset($fromCharset) { $this->fromCharset = $fromCharset; return $this; } /** * Return from-character set * @return string */ public function getFromCharset() { return $this->fromCharset; } /** * Set to-character set * @param string $toCharset * @return ExporterConfig */ public function setToCharset($toCharset) { $this->toCharset = $toCharset; return $this; } /** * Return to-character set * @return string */ public function getToCharset() { return $this->toCharset; } /** * Set file mode * @param string $fileMode * @return ExporterConfig */ public function setFileMode($fileMode) { $this->fileMode = $fileMode; return $this; } /** * Return file mode * @return string */ public function getFileMode() { return $this->fileMode; } /** * Set the column headers. * @param array $columnHeaders * @return ExporterConfig */ public function setColumnHeaders(array $columnHeaders) { $this->columnHeaders = $columnHeaders; return $this; } /** * Get the column headers. * @return array */ public function getColumnHeaders() { return $this->columnHeaders; } }