php code style fix

This commit is contained in:
nobohan
2022-04-20 08:52:15 +02:00
parent 7a6aa6edcb
commit f2c60cfd20
5 changed files with 9 additions and 10 deletions

View File

@@ -28,7 +28,6 @@ use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\HiddenType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
@@ -84,11 +83,11 @@ final class CreationPersonType extends AbstractType
->add('addressForm', CheckboxType::class, [
'label' => 'Create a household and add an address',
'required' => false,
'mapped' => false
'mapped' => false,
])
->add('address', PickAddressType::class, [
'required' => false,
'mapped' => false
'mapped' => false,
]);
if ($this->askCenters) {