src/Controller/PublicController.php line 12
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\RedirectResponse;use Symfony\Component\Routing\Annotation\Route;class PublicController extends AbstractController{#[Route('/', name: 'app_homepage')]public function index(): RedirectResponse{return $this->redirect('/admin');}}