You are here

public function MockControllerPsr7::getControllerWithRequestAndRouteMatch in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\MockControllerPsr7::getControllerWithRequestAndRouteMatch()
  2. 10 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\MockControllerPsr7::getControllerWithRequestAndRouteMatch()

File

core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php, line 214
Contains \Drupal\Tests\Core\Controller\ControllerResolverTest.

Class

MockControllerPsr7

Namespace

Drupal\Tests\Core\Controller

Code

public function getControllerWithRequestAndRouteMatch(RouteMatchInterface $route_match, ServerRequestInterface $request) {
  return [
    '#markup' => 'this is another example controller',
  ];
}