/**
  * Remove a route from the collection.
  *
  * @param Route $route
  */
 public function removeRoute($route)
 {
     if (!$this->routes) {
         $this->routes = new ArrayCollection();
     }
     $this->routes->removeElement($route);
 }
 /**
  * {@inheritdoc}
  */
 public function removeRoute($route)
 {
     $this->routes->removeElement($route);
 }