src/Presentation/Web/Controller/HomeController.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Presentation\Web\Controller;
  3. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  4. use Symfony\Component\HttpFoundation\Response;
  5. use Symfony\Component\Routing\Annotation\Route;
  6. class HomeController extends AbstractController
  7. {
  8.     /**
  9.      * @Route("/", name="homepage")
  10.      */
  11.     public function home(): Response
  12.     {
  13.         return $this->redirectToRoute('contract');
  14.     }
  15. }