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