setOptions($options); } } /** * Returns one or all set options * * @param string $option (Optional) Option to return * @return mixed */ public function getOptions($option = null) { if ($option === null) { return $this->options; } if (!array_key_exists($option, $this->options)) { return null; } return $this->options[$option]; } /** * Sets all or one option * * @param array $options * @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; } }