src/Controller/PolitiqueConfidentialiteController.php line 14

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 PolitiqueConfidentialiteController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/politiqueConfidentialite", name="politique_confidentialite")
  10.      */
  11.     public function index(): Response
  12.     {
  13.         return $this->render('politique_confidentialite/index.html.twig', [
  14.             'controller_name' => 'PolitiqueConfidentialiteController',
  15.             'banner' => 'banniere.jpg',
  16.             'titre' => 'POLITIQUES DE CONFIDENTIALITÉ',
  17.             'sousTitre' => 'Vos informations vous appartiennent',
  18.         ]);
  19.     }
  20. }