From 64306f01fc01391676695f96be3eb94e18d0cf7d Mon Sep 17 00:00:00 2001 From: Axel Guckelsberger Date: Fri, 8 Jan 2021 19:12:17 +0100 Subject: [PATCH] Apply fixes from StyleCI (#4575) [ci skip] [skip ci] Co-authored-by: Axel Guckelsberger --- Form/Type/DbCredsType.php | 2 +- Form/Type/LocaleType.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Form/Type/DbCredsType.php b/Form/Type/DbCredsType.php index ef82765..9abf0e8 100644 --- a/Form/Type/DbCredsType.php +++ b/Form/Type/DbCredsType.php @@ -37,7 +37,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) 'label_attr' => [ 'class' => 'col-md-3' ], - 'choices' => /** @Ignore */$this->getDbTypes(), + 'choices' => /** @Ignore */ $this->getDbTypes(), 'data' => 'mysql' ]) ->add('database_host', TextType::class, [ diff --git a/Form/Type/LocaleType.php b/Form/Type/LocaleType.php index 2a36fa2..5b366dd 100644 --- a/Form/Type/LocaleType.php +++ b/Form/Type/LocaleType.php @@ -29,7 +29,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) 'label_attr' => [ 'class' => 'col-md-3' ], - 'choices' => /** @Ignore */$options['choices'], + 'choices' => /** @Ignore */ $options['choices'], 'choice_loader' => null, 'data' => $options['choice'] ])