function RouteTestSubscriber::alterRoutes

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.php \Drupal\router_test\RouteTestSubscriber::alterRoutes()
  2. 10 core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.php \Drupal\router_test\RouteTestSubscriber::alterRoutes()
  3. 8.9.x core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.php \Drupal\router_test\RouteTestSubscriber::alterRoutes()

File

core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.php, line 16

Class

RouteTestSubscriber
Listens to the dynamic route event and add a test route.

Namespace

Drupal\router_test

Code

protected function alterRoutes(RouteCollection $collection) {
  $route = $collection->get('router_test.6');
  // Change controller method from test1 to test5.
  $route->setDefault('_controller', '\\Drupal\\router_test\\TestControllers::test5');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.