<?php
namespace App\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class IndexController extends AbstractController
{
/**
* @Route("/", name="index")
*/
public function index(): Response
{
return $this->render('Index/index.html.twig', [
'controller_name' => 'IndexController',
]);
}
/**
* @Route("poc", name="poc")
*/
public function poc(): Response
{
return $this->render('poc/index.html.twig', [
'controller_name' => 'IndexController',
]);
}
/**
* @Route("404", name="notfound")
*/
public function notfound(): Response
{
return $this->render('Index/notfound.html.twig', [
'controller_name' => 'IndexController',
]);
}
}