Removes a route or an array of routes by name from the collection
string|array $name The route name or an array of route names:
public function remove($name) { foreach ((array) $name as $n) { unset($this->routes[$n]); } }