/**
* Set option value.
*
* @param string $name The option name to store value.
* @param mixed $value The option value.
*
* @return static
*
* @since 4.0.0
*/
public function setOption(string $name, $value) : self
{
$this->options[$name] = $value;
return $this;
}