RouteTestSubscriber.php in Drupal 9
File
core/modules/system/tests/modules/router_test_directory/src/RouteTestSubscriber.php
View source
<?php
namespace Drupal\router_test;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;
class RouteTestSubscriber extends RouteSubscriberBase {
protected function alterRoutes(RouteCollection $collection) {
$route = $collection
->get('router_test.6');
$route
->setDefault('_controller', '\\Drupal\\router_test\\TestControllers::test5');
}
}