styleBuilder = $styleBuilder; parent::__construct(); } /** * @inheritdoc */ protected function getSupportedOptions() { return [ Options::TEMP_FOLDER, Options::DEFAULT_ROW_STYLE, Options::SHOULD_CREATE_NEW_SHEETS_AUTOMATICALLY, ]; } /** * @inheritdoc */ protected function setDefaultOptions() { $this->setOption(Options::TEMP_FOLDER, sys_get_temp_dir()); $this->setOption(Options::DEFAULT_ROW_STYLE, $this->styleBuilder->build()); $this->setOption(Options::SHOULD_CREATE_NEW_SHEETS_AUTOMATICALLY, true); } }