setOptions($options); } } /** * Returns one or all set options * * @param string|null $option Option to return * @return mixed * @psalm-return ($option is null ? TOptions : mixed) */ public function getOptions($option = null) { if ($option === null) { return $this->options; } if (! isset($this->options[$option])) { return null; } return $this->options[$option]; } /** * Sets all or one option * * @return self */ public function setOptions(array $options) { foreach ($options as $key => $option) { $method = 'set' . $key; if (method_exists($this, $method)) { $this->$method($option); } } return $this; } }