You are here

class MockControllerPsr7 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
  2. 10 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\MockControllerPsr7

Hierarchy

Expanded class hierarchy of MockControllerPsr7

File

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

Namespace

Drupal\Tests\Core\Controller
View source
class MockControllerPsr7 {
  public function getResult() {
    return [
      '#markup' => 'This is a regular controller',
    ];
  }
  public function getControllerWithRequestAndRouteMatch(RouteMatchInterface $route_match, ServerRequestInterface $request) {
    return [
      '#markup' => 'this is another example controller',
    ];
  }

}

Members