src/Controller/Mvc/IndexController.php line 14

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