<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class LegalNoticeController extends AbstractController{ #[Route('/legal/notice', name: 'legalNotice')] public function index(): Response { return $this->render('clientWeb/legalNotice.html.twig', [ 'controller_name' => 'LegalNoticeController', ]); }}