<?phpnamespace App\Controller\Legals;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;class LegalNoticesController extends AbstractController{ public function index(): Response { return $this->render('legals/legal_notices/index.html.twig', [ 'controller_name' => 'LegalNoticesController', ]); }}