X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/335a32f468dc7e23ecda1ee79eeb1e77f39b6e7c..d123c1905e0a793ec3d377cfd098b1baab1c19cf:/Form/LoginType.php diff --git a/Form/LoginType.php b/Form/LoginType.php index 66afbca..9c6fc59 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'; } }