class TestRouteSubscriber
Provides a callback for route definition.
Hierarchy
- class \Drupal\Tests\Core\Routing\TestRouteSubscriber
Expanded class hierarchy of TestRouteSubscriber
File
- 
              core/tests/ Drupal/ Tests/ Core/ Routing/ RouteBuilderTest.php, line 358 
Namespace
Drupal\Tests\Core\RoutingView source
class TestRouteSubscriber {
  public function routesFromArray() {
    return [
      'test_route.1' => new Route('/test-route/1'),
    ];
  }
  public function routesFromCollection() {
    $collection = new RouteCollection();
    $collection->add('test_route.2', new Route('/test-route/2'));
    return $collection;
  }
}Members
| Title Sort descending | Modifiers | Object type | Summary | 
|---|---|---|---|
| TestRouteSubscriber::routesFromArray | public | function | |
| TestRouteSubscriber::routesFromCollection | public | function | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
