src/Controller/PublicLegalController.php line 18
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class PublicLegalController extends AbstractController{#[Route('/aviso-legal', name: 'public_legal_notice', methods: ['GET'])]public function legalNotice(): Response{return $this->render('public/legal/legal_notice.html.twig');}#[Route('/proteccion-datos', name: 'public_privacy_policy', methods: ['GET'])]public function privacyPolicy(): Response{return $this->render('public/legal/privacy_policy.html.twig');}}