You are here

public function TestController::testMethod in Drupal 8

Same name in this branch
  1. 8 core/modules/system/tests/modules/csrf_race_test/src/Controller/TestController.php \Drupal\csrf_race_test\Controller\TestController::testMethod()
  2. 8 core/modules/system/tests/modules/csrf_test/src/Controller/TestController.php \Drupal\csrf_test\Controller\TestController::testMethod()
Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/csrf_test/src/Controller/TestController.php \Drupal\csrf_test\Controller\TestController::testMethod()

Just a test method for the test routes.

Return value

\Symfony\Component\HttpFoundation\Response The response object.

1 string reference to 'TestController::testMethod'
csrf_test.routing.yml in core/modules/system/tests/modules/csrf_test/csrf_test.routing.yml
core/modules/system/tests/modules/csrf_test/csrf_test.routing.yml

File

core/modules/system/tests/modules/csrf_test/src/Controller/TestController.php, line 18

Class

TestController
Just a test controller for test routes.

Namespace

Drupal\csrf_test\Controller

Code

public function testMethod() {
  return new Response('Sometimes it is hard to think of test content!');
}