]> Raphaël G. Git Repositories - userbundle/commitdiff
Sort use classes
authorRaphaël Gertz <git@rapsys.eu>
Thu, 14 Nov 2019 08:03:09 +0000 (09:03 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 14 Nov 2019 08:03:09 +0000 (09:03 +0100)
Form/RegisterType.php

index 6e68583e821ec41f443b98649fc883a67667bc70..7e3e9b9115c96347cd0f18dee91f90dbafbc5469 100644 (file)
@@ -2,15 +2,15 @@
 
 namespace Rapsys\UserBundle\Form;
 
-use Symfony\Component\Form\AbstractType;
-use Symfony\Component\Form\FormBuilderInterface;
-use Symfony\Component\OptionsResolver\OptionsResolver;
 use Symfony\Bridge\Doctrine\Form\Type\EntityType;
+use Symfony\Component\Form\AbstractType;
 use Symfony\Component\Form\Extension\Core\Type\EmailType;
 use Symfony\Component\Form\Extension\Core\Type\PasswordType;
 use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
 use Symfony\Component\Form\Extension\Core\Type\SubmitType;
 use Symfony\Component\Form\Extension\Core\Type\TextType;
+use Symfony\Component\Form\FormBuilderInterface;
+use Symfony\Component\OptionsResolver\OptionsResolver;
 use Symfony\Component\Validator\Constraints\Email;
 use Symfony\Component\Validator\Constraints\NotBlank;