d722b3ace407a791c02b73387c19b72a0d6acd7e
[yaffs-website] / 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 }