027c24f73fe5feb96669a6b6bb85b6aa775d0ed8
[yaffs-website] / path_encoded_test / src / Controller / PathEncodedTestController.php
1 <?php
2
3 namespace Drupal\path_encoded_test\Controller;
4
5 use Symfony\Component\HttpFoundation\Response;
6
7 /**
8  * Returns responses for path_encoded_test routes.
9  */
10 class PathEncodedTestController {
11
12   /**
13    * Returns a HTML simple response.
14    *
15    * @return \Symfony\Component\HttpFoundation\Response
16    */
17   public function simple() {
18     return new Response('<html><body>PathEncodedTestController works</body></html>');
19   }
20
21 }