src/Controller/Pub/FooterController.php line 45

Open in your IDE?
  1. <?php
  2. namespace App\Controller\Pub;
  3. use App\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class FooterController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/faq", name="faq")
  10.      * @return Response
  11.      */
  12.     public function faq(): Response
  13.     {
  14.         return $this->render('public/footer/faq.html.twig');
  15.     }
  16.     /**
  17.      * @Route("/about/us", name="about_us")
  18.      * @return Response
  19.      */
  20.     public function about(): Response
  21.     {
  22.         return $this->render('public/footer/about.html.twig');
  23.     }
  24.     /**
  25.      * @Route("/support", name="support")
  26.      * @return Response
  27.      */
  28.     public function support(): Response
  29.     {
  30.         return $this->render('public/footer/support.html.twig');
  31.     }
  32.     /**
  33.      * @Route("/legal/notice", name="legal_notice")
  34.      * @return Response
  35.      */
  36.     public function legalNotice(): Response
  37.     {
  38.         return $this->render('public/footer/legal_notice.html.twig');
  39.     }
  40.     /**
  41.      * @Route("/terms/and/conditions", name="terms_and_conditions")
  42.      * @return Response
  43.      */
  44.     public function cgv(): Response
  45.     {
  46.         return $this->render('public/footer/terms_and_conditions.html.twig');
  47.     }
  48. }