François Drouhard 2 жил өмнө
parent
commit
684e9e9fba

+ 0 - 1
src/Entity/Film.php

@@ -4,7 +4,6 @@ namespace App\Entity;
 
 use App\Repository\FilmRepository;
 use Doctrine\Common\Collections\Collection;
-use Doctrine\DBAL\Types\Types;
 use Doctrine\ORM\Mapping as ORM;
 use Symfony\Component\Validator\Constraints as Assert;
 

+ 6 - 1
src/Service/FilmManager.php

@@ -13,7 +13,12 @@ use Symfony\Component\Security\Core\Security;
 class FilmManager {
     protected $user;
 
-    public function __construct(protected EntityManagerInterface $em, protected UniciteCollections $uc, protected CommentaireManager $cm, Security $security)
+    public function __construct(
+        protected EntityManagerInterface $em,
+        protected UniciteCollections $uc,
+        protected CommentaireManager $cm,
+        Security $security
+    )
     {
         $this->user = $security->getUser();
     }