François 5 years ago
parent
commit
c38bbdf04e

+ 0 - 1
src/Controller/GenreController.php

@@ -7,7 +7,6 @@ use App\Form\GenreType;
 use App\Repository\FilmRepository;
 use App\Repository\GenreRepository;
 use App\Service\GenreManager;
-use Doctrine\ORM\EntityManagerInterface;
 use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
 use Symfony\Component\Routing\Annotation\Route;
 use Symfony\Component\HttpFoundation\Request;

+ 0 - 1
src/Controller/RealisateurController.php

@@ -6,7 +6,6 @@ use App\Entity\Realisateur;
 use App\Form\RealisateurType;
 use App\Repository\RealisateurRepository;
 use App\Service\RealisateurManager;
-use Doctrine\ORM\EntityManagerInterface;
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\IsGranted;
 use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
 use Symfony\Component\Routing\Annotation\Route;

+ 0 - 9
src/Form/CommentaireType.php

@@ -2,20 +2,11 @@
 
 namespace App\Form;
 
-use App\Entity\Realisateur;
-use App\Repository\RealisateurRepository;
-use Symfony\Bridge\Doctrine\Form\Type\EntityType;
-use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
-use Symfony\Component\Form\Extension\Core\Type\CollectionType;
 use Symfony\Component\Form\Extension\Core\Type\NumberType;
-use Symfony\Component\Form\Extension\Core\Type\RangeType;
-use Symfony\Component\Form\Extension\Core\Type\TextType;
 use Symfony\Component\Form\AbstractType;
-use Symfony\Component\Form\Extension\Core\Type\DateType;
 use Symfony\Component\Form\Extension\Core\Type\TextareaType;
 use Symfony\Component\Form\FormBuilderInterface;
 use Symfony\Component\OptionsResolver\OptionsResolver;
-use Symfony\Component\Form\Extension\Core\Type\IntegerType;
 use Symfony\Component\Form\Extension\Core\Type\SubmitType;
 
 

+ 0 - 6
src/Form/FilmType.php

@@ -2,11 +2,6 @@
 
 namespace App\Form;
 
-use App\Entity\Film;
-use App\Entity\Genre;
-use App\Entity\MediaVideo;
-use Doctrine\ORM\Mapping\Entity;
-use Symfony\Bridge\Doctrine\Form\Type\EntityType;
 use Symfony\Component\Form\Extension\Core\Type\CollectionType;
 use Symfony\Component\Form\Extension\Core\Type\TextType;
 use Symfony\Component\Form\AbstractType;
@@ -15,7 +10,6 @@ use Symfony\Component\Form\FormBuilderInterface;
 use Symfony\Component\OptionsResolver\OptionsResolver;
 use Symfony\Component\Form\Extension\Core\Type\SubmitType;
 
-
 class FilmType extends AbstractType
 {
     /**

+ 0 - 1
src/Form/UserEditProfilType.php

@@ -4,7 +4,6 @@ namespace App\Form;
 
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolver;
 
 class UserEditProfilType extends AbstractType
 {

+ 0 - 1
src/Form/UserEditType.php

@@ -4,7 +4,6 @@ namespace App\Form;
 
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolver;
 
 class UserEditType extends AbstractType
 {

+ 0 - 1
src/Form/UserRegisterType.php

@@ -4,7 +4,6 @@ namespace App\Form;
 
 use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolver;
 
 class UserRegisterType extends AbstractType
 {

+ 0 - 1
src/Form/UserType.php

@@ -11,7 +11,6 @@ use Symfony\Component\Form\Extension\Core\Type\SubmitType;
 use Symfony\Component\Form\FormBuilderInterface;
 use Symfony\Component\OptionsResolver\OptionsResolver;
 use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
-use Symfony\Component\Security\Core\User\UserInterface;
 
 class UserType extends AbstractType
 {