src/Controller/IndexController.php line 15

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Controller;
  4. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  5. use Symfony\Component\HttpFoundation\Response;
  6. final class IndexController extends AbstractController
  7. {
  8. /**
  9. * Renders the project's welcome page.
  10. */
  11. public function index(): Response
  12. {
  13. return $this->render('index/index.html.twig');
  14. }
  15. }