Adds options to all routes.
An existing option value under the same name in a route will be overridden.
public function addOptions(array $options) : void { if ($options) { foreach ($this->routes as $route) { $route->addOptions($options); } } }