Gets an option value.
\InvalidArgumentException
public function getOption(string $key) : mixed { if (!\array_key_exists($key, $this->options)) { throw new \InvalidArgumentException(\sprintf('The Router does not support the "%s" option.', $key)); } return $this->options[$key]; }