src/Controller/DefaultController.php line 15

  1. <?php
  2. namespace App\Controller;
  3. use Exception;
  4. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\Routing\Annotation\Route;
  7. use Symfony\Component\Security\Core\Exception\AccessDeniedException;
  8. class DefaultController extends AbstractController
  9. {
  10.     #[Route('/'name'app_start')]
  11.     public function index(): Response
  12.     {
  13.         return $this->render('default/index.html.twig',
  14.         );
  15.     }
  16. }