src/Controller/LegalNoticesController.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. class LegalNoticesController extends AbstractController
  6. {
  7.     /**
  8.      * @Route("/legal-notices", name="legal-notices", methods={"GET"})
  9.      */
  10.     public function showLegalNotices()
  11.     {
  12.         return $this->render('legal-notices/index.html.twig', ['menu' => 'legal-notices']);
  13.     }
  14. }