<?php
namespace App\Presentation\Web\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class HomeController extends AbstractController
{
/**
* @Route("/", name="homepage")
*/
public function home(): Response
{
return $this->redirectToRoute('contract');
}
}