@@ -9,13 +9,13 @@ |
||
9 | 9 | use Symfony\Component\OptionsResolver\OptionsResolver; |
10 | 10 | use Vich\UploaderBundle\Form\Type\VichImageType; |
11 | 11 | |
12 | -class UserProfileFormType extends AbstractType{ |
|
12 | +class UserProfileFormType extends AbstractType { |
|
13 | 13 | |
14 | 14 | public function buildForm(FormBuilderInterface $builder, array $options) |
15 | 15 | { |
16 | 16 | $builder |
17 | 17 | ->add('UserName', TextType::class) |
18 | - ->add('imageFile', VichImageType::class,[ |
|
18 | + ->add('imageFile', VichImageType::class, [ |
|
19 | 19 | 'required' => false, |
20 | 20 | 'allow_delete' => false, |
21 | 21 | 'download_uri' => false, |
@@ -11,7 +11,7 @@ |
||
11 | 11 | use Symfony\Component\Validator\Constraints\Length; |
12 | 12 | use Symfony\Component\Validator\Constraints\NotBlank; |
13 | 13 | |
14 | -class UserChangePasswordFormType extends AbstractType{ |
|
14 | +class UserChangePasswordFormType extends AbstractType { |
|
15 | 15 | |
16 | 16 | public function buildForm(FormBuilderInterface $builder, array $options) |
17 | 17 | { |