]> Raphaël G. Git Repositories - userbundle/commitdiff
Add strict
authorRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 12:54:36 +0000 (14:54 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Thu, 12 Aug 2021 12:54:36 +0000 (14:54 +0200)
Form/LoginType.php
Form/RegisterType.php
RapsysUserBundle.php

index 66afbca228ad4bc941e9a99441635a3b71ac6bf7..b58b44699c45418b1bd198ed04d45fbe523ed748 100644 (file)
@@ -1,4 +1,13 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys PackBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * 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';
        }
 }
index f4327c0f27b3bd95fbe9e6fd9695109ab3901160..75121603b77afaa0efc5a30acf6416c3eb966c21 100644 (file)
@@ -1,4 +1,13 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys PackBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * 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';
        }
 }
index 627ad610d32ee62ce20957295e78e1bd215852a8..4f7ec84ecda82bce8248fb797ac769ea45563d28 100644 (file)
@@ -1,4 +1,13 @@
-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys PackBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
 
 namespace Rapsys\UserBundle;