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