src/Controller/IndexController.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use Symfony\Component\HttpFoundation\Response;
  4. use Symfony\Component\Routing\Annotation\Route;
  5. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  6. class IndexController extends AbstractController
  7. {
  8.     public function __construct() {
  9.         
  10.     }
  11.     #[Route('/'name'app_index')]
  12.     public function index(): Response
  13.     {
  14.         return $this->render('index/index.html.twig', [
  15.             'controller_name' => 'IndexController',
  16.         ]);
  17.     }
  18. }