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