Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / system / tests / modules / csrf_test / src / Controller / TestController.php
1 <?php
2
3 namespace Drupal\csrf_test\Controller;
4
5 use Symfony\Component\HttpFoundation\Response;
6
7 /**
8  * Just a test controller for test routes.
9  */
10 class TestController {
11
12   /**
13    * Just a test method for the test routes.
14    *
15    * @return \Symfony\Component\HttpFoundation\Response
16    *   The response object.
17    */
18   public function testMethod() {
19     return new Response('Sometimes it is hard to think of test content!');
20   }
21
22 }