src/Controller/LegalController.php line 14
<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use App\Service\RaceService;
use App\Service\MailService;
class LegalController extends AbstractController
{
#[Route('/legal', name: 'app_legal')]
public function index(RaceService $rser): Response
{
return $this->render('legal/index.html.twig', [
]);
}
}