src/Controller/MentionsLController.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 MentionsLController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/mentions/l", name="app_mentions_l")
  10.      */
  11.     public function index(): Response
  12.     {
  13.         return $this->render('mentions_l/index.html.twig', [
  14.             'controller_name' => 'MentionsLController',
  15.         ]);
  16.     }
  17. }