<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\Routing\Annotation\Route;class HomeController extends AbstractController{ /** * @Route("/", name="parcelle_home") */ public function index() { return $this->render('polygons/index.html'); }}