src/Controller/PoliticsController.php line 31

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class PoliticsController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/politica-de-devoluciones", name="politica_devoluciones")
  10.      */
  11.     public function devoluciones(): Response
  12.     {
  13.         return $this->render('politics/devoluciones.html.twig');
  14.     }
  15.     /**
  16.      * @Route("/politica-de-privacidad", name="politica_privacidad")
  17.      */
  18.     public function privacidad(): Response
  19.     {
  20.         return $this->render('politics/privacidad.html.twig');
  21.     }
  22.     /**
  23.      * @Route("/politica-de-cookies", name="politica_privacidad")
  24.      */
  25.     public function cookies(): Response
  26.     {
  27.         return $this->render('politics/cookies.html.twig');
  28.     }
  29.     /**
  30.      * @Route("/terminos-del-servicio", name="terminos_servicio")
  31.      */
  32.     public function terminosServicio(): Response
  33.     {
  34.         return $this->render('politics/terminos_servicio.html.twig');
  35.     }
  36.     /**
  37.      * @Route("/politica-de-envio", name="politica_envio")
  38.      */
  39.     public function politicaEnvio(): Response
  40.     {
  41.         return $this->render('politics/envio.html.twig');
  42.     }
  43.     /**
  44.      * @Route("/informacion-de-contacto", name="informacion_contacto")
  45.      */
  46.     public function informacionContacto(): Response
  47.     {
  48.         return $this->render('politics/contacto.html.twig');
  49.     }
  50.     /**
  51.      * @Route("/aviso-legal", name="aviso_legal")
  52.      */
  53.     public function avisoLegal(): Response
  54.     {
  55.         return $this->render('politics/aviso_legal.html.twig');
  56.     }
  57. }