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