<?phpdeclare(strict_types=1);namespace App\Infrastructure\Controller;use App\Infrastructure\Controller\Common\BaseController;use Symfony\Component\HttpFoundation\RedirectResponse;use Symfony\Component\Routing\Annotation\Route;class DefaultController extends BaseController{ /** * @Route("/", name="default") */ public function homepage(): RedirectResponse { return $this->redirectToRoute('salle_attente_liste'); }}