From 78afa67ad8c7163374b13f05394cc9e016189f3a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 12 Aug 2021 14:54:36 +0200 Subject: [PATCH] Add strict --- Form/LoginType.php | 17 +++++++++++++---- Form/RegisterType.php | 20 +++++++++++++------- RapsysUserBundle.php | 11 ++++++++++- 3 files changed, 36 insertions(+), 12 deletions(-) diff --git a/Form/LoginType.php b/Form/LoginType.php index 66afbca..b58b446 100644 --- a/Form/LoginType.php +++ b/Form/LoginType.php @@ -1,4 +1,13 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ namespace Rapsys\UserBundle\Form; @@ -16,7 +25,7 @@ class LoginType extends AbstractType { /** * {@inheritdoc} */ - public function buildForm(FormBuilderInterface $builder, array $options) { + public function buildForm(FormBuilderInterface $builder, array $options): FormBuilderInterface { //Create form $form = $builder; @@ -46,7 +55,7 @@ class LoginType extends AbstractType { /** * {@inheritdoc} */ - public function configureOptions(OptionsResolver $resolver) { + public function configureOptions(OptionsResolver $resolver): void { //Set defaults $resolver->setDefaults(['error_bubbling' => true, 'mail' => true, 'password' => true, 'password_repeated' => true]); @@ -63,7 +72,7 @@ class LoginType extends AbstractType { /** * {@inheritdoc} */ - public function getName() { + public function getName(): string { return 'rapsys_user_login'; } } diff --git a/Form/RegisterType.php b/Form/RegisterType.php index f4327c0..7512160 100644 --- a/Form/RegisterType.php +++ b/Form/RegisterType.php @@ -1,4 +1,13 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ namespace Rapsys\UserBundle\Form; @@ -20,7 +29,7 @@ class RegisterType extends AbstractType { /** * {@inheritdoc} */ - public function buildForm(FormBuilderInterface $builder, array $options) { + public function buildForm(FormBuilderInterface $builder, array $options): FormBuilderInterface { //Create form $form = $builder; @@ -64,7 +73,7 @@ class RegisterType extends AbstractType { /** * {@inheritdoc} */ - public function configureOptions(OptionsResolver $resolver) { + public function configureOptions(OptionsResolver $resolver): void { //Set defaults $resolver->setDefaults(['error_bubbling' => true, 'civility_class' => 'RapsysUserBundle:Civility', 'civility_default' => null, 'mail' => true, 'civility' => true, 'pseudonym' => true, 'forename' => true, 'surname' => true, 'password' => true]); @@ -92,15 +101,12 @@ class RegisterType extends AbstractType { //Add extra password option $resolver->setAllowedTypes('password', 'boolean'); - - //Return resolver - return $resolver; } /** * {@inheritdoc} */ - public function getName() { + public function getName(): string { return 'rapsys_user_register'; } } diff --git a/RapsysUserBundle.php b/RapsysUserBundle.php index 627ad61..4f7ec84 100644 --- a/RapsysUserBundle.php +++ b/RapsysUserBundle.php @@ -1,4 +1,13 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ namespace Rapsys\UserBundle; -- 2.41.0