diff --git a/application/symfony/src/Controller/DefaultController.php b/application/symfony/src/Controller/DefaultController.php index 14af6f8..34502f1 100644 --- a/application/symfony/src/Controller/DefaultController.php +++ b/application/symfony/src/Controller/DefaultController.php @@ -5,7 +5,6 @@ namespace App\Controller; use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\HttpFoundation\Response; use App\DBAL\Types\SystemSlugType; -use App\Entity\Source\AbstractSource; use App\Entity\Meta\Right; use App\DBAL\Types\Meta\Right\LayerType; use App\DBAL\Types\Meta\Right\CRUDType; @@ -44,9 +43,4 @@ final class DefaultController extends AbstractController { return $this->render('standard/homepage.html.twig'); } - - protected function setEntityName(): void - { - $this->entityName = AbstractSource::class; - } }