<?phpnamespace App\Controller\App;use Doctrine\ORM\EntityManagerInterface;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Response;use Symfony\Component\Routing\Annotation\Route;#[Route('', name: 'default_')]class DefaultController extends AbstractController{ #[Route('', name: 'index')] public function index(EntityManagerInterface $entityManager): Response { return $this->redirectToRoute('app_model_collection'); }}