You are here

public function TestControllers::test9 in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/router_test_directory/src/TestControllers.php \Drupal\router_test\TestControllers::test9()
  2. 9 core/modules/system/tests/modules/router_test_directory/src/TestControllers.php \Drupal\router_test\TestControllers::test9()
1 string reference to 'TestControllers::test9'
router_test.routing.yml in core/modules/system/tests/modules/router_test_directory/router_test.routing.yml
core/modules/system/tests/modules/router_test_directory/router_test.routing.yml

File

core/modules/system/tests/modules/router_test_directory/src/TestControllers.php, line 56

Class

TestControllers
Controller routines for testing the routing system.

Namespace

Drupal\router_test

Code

public function test9($uid) {
  $text = 'Route not matched.';
  try {
    $match = \Drupal::service('router.no_access_checks')
      ->match('/user/' . $uid);
    if (isset($match['user']) && $match['user'] instanceof UserInterface) {
      $text = sprintf('User route "%s" was matched.', $match[RouteObjectInterface::ROUTE_NAME]);
    }
  } catch (ParamNotConvertedException $e) {
  }
  return new Response($text);
}