function MatcherDumper::addRoutes
Adds additional routes to be dumped.
Parameters
\Symfony\Component\Routing\RouteCollection $routes: A collection of routes to add to this dumper.
Overrides MatcherDumperInterface::addRoutes
File
- 
              core/
lib/ Drupal/ Core/ Routing/ MatcherDumper.php, line 87  
Class
- MatcherDumper
 - Dumps Route information to a database table.
 
Namespace
Drupal\Core\RoutingCode
public function addRoutes(RouteCollection $routes) {
  if (empty($this->routes)) {
    $this->routes = $routes;
  }
  else {
    $this->routes
      ->addCollection($routes);
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.