src/Controller/ContentController.php line 38

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * ImmoBay - BAUR Immobilien
  5.  *
  6.  * @copyright  Copyright (c) 2008-2022, 47GradNord - Agentur für Internetlösungen
  7.  * @author     47GradNord - Agentur für Internetlösungen <info@47gradnord.de>
  8.  */
  9. namespace App\Controller;
  10. use Symfony\Component\HttpFoundation\Response;
  11. use Symfony\Component\Routing\Annotation\Route;
  12. class ContentController extends AbstractAppController
  13. {
  14.     /**
  15.      * @Route("/faq", name="content_faq", methods={"GET"} )
  16.      */
  17.     public function index(): Response
  18.     {
  19.         return $this->render('content/faq.html.twig', []);
  20.     }
  21.     /**
  22.      * @Route("/termsconditions", name="content_termsconditions", methods={"GET"} )
  23.      */
  24.     public function termsConditions(): Response
  25.     {
  26.         return $this->render('content/terms-conditions.html.twig', []);
  27.     }
  28.     /**
  29.      * @Route("/privacy", name="content_privacy", methods={"GET"} )
  30.      */
  31.     public function privacy(): Response
  32.     {
  33.         return $this->render('content/privacy.html.twig', []);
  34.     }
  35.     /**
  36.      * @Route("/imprint", name="content_imprint", methods={"GET"} )
  37.      */
  38.     public function imprint(): Response
  39.     {
  40.         return $this->render('content/imprint.html.twig', []);
  41.     }
  42. }