You are here

public function MockRouteProvider::getRoutesByNames in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/src/Tests/Routing/MockRouteProvider.php \Drupal\system\Tests\Routing\MockRouteProvider::getRoutesByNames()
1 call to MockRouteProvider::getRoutesByNames()
MockRouteProvider::getRouteByName in core/modules/system/src/Tests/Routing/MockRouteProvider.php
Find the route using the provided route name.

File

core/modules/system/src/Tests/Routing/MockRouteProvider.php, line 64

Class

MockRouteProvider
Easily configurable mock route provider.

Namespace

Drupal\system\Tests\Routing

Code

public function getRoutesByNames($names) {
  $routes = [];
  foreach ($names as $name) {
    $routes[] = $this->routes
      ->get($name);
  }
  return $routes;
}