class MockController

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\MockController
  2. 10 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\MockController
  3. 11.x core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\MockController

Hierarchy

Expanded class hierarchy of MockController

File

core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php, line 277

Namespace

Drupal\Tests\Core\Controller
View source
class MockController {
    public function getResult() {
        return 'This is a regular controller.';
    }
    public function getControllerWithRequestAndRouteMatch(RouteMatchInterface $route_match, Request $request) {
        return 'this is another example controller';
    }

}

Members

Title Sort descending Modifiers Object type Summary
MockController::getControllerWithRequestAndRouteMatch public function
MockController::getResult public function

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