src/Controller/HomeController.php line 17
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;class HomeController extends AbstractController{#[Route(path: '/',name: 'home',methods: ['GET'])]public function index(): Response{return $this->redirectToRoute('admin_dashboard_index');}}