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