<?phpnamespace App\Controller;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;class FrontController extends AbstractController{ /** * @Route("/") */ public function route(): Response { return $this->render('index.html.twig'); }}