function NullMatcherDumper::addRoutes

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Routing/NullMatcherDumper.php \Drupal\Core\Routing\NullMatcherDumper::addRoutes()

File

core/lib/Drupal/Core/Routing/NullMatcherDumper.php, line 22

Class

NullMatcherDumper
Does not dump Route information.

Namespace

Drupal\Core\Routing

Code

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.