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