Next major version 2 with PHP 8.1, Symfony 6, Tabler UI, 2FA ... (#2902)

This commit is contained in:
Kevin Papst
2022-12-31 21:19:55 +01:00
committed by GitHub
parent 95e06746bd
commit 90a0fd8a22
2164 changed files with 83700 additions and 86426 deletions

View File

@@ -17,16 +17,13 @@ use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;
class SelfRegistrationForm extends AbstractType
final class SelfRegistrationForm extends AbstractType
{
/**
* {@inheritdoc}
*/
public function buildForm(FormBuilderInterface $builder, array $options)
public function buildForm(FormBuilderInterface $builder, array $options): void
{
$builder
->add('email', EmailType::class, ['label' => 'label.email'])
->add('username', null, ['label' => 'Username', 'translation_domain' => 'AdminLTEBundle'])
->add('email', EmailType::class, ['label' => 'email'])
->add('username', null, ['label' => 'Username', 'translation_domain' => 'TablerBundle'])
->add('plainPassword', RepeatedType::class, [
'type' => PasswordType::class,
'options' => [
@@ -34,17 +31,14 @@ class SelfRegistrationForm extends AbstractType
'autocomplete' => 'new-password',
],
],
'first_options' => ['label' => 'label.password'],
'second_options' => ['label' => 'label.password_repeat'],
'first_options' => ['label' => 'password'],
'second_options' => ['label' => 'password_repeat'],
'invalid_message' => 'The entered passwords don\'t match.',
])
;
}
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
public function configureOptions(OptionsResolver $resolver): void
{
$resolver->setDefaults([
'data_class' => User::class,
@@ -52,10 +46,7 @@ class SelfRegistrationForm extends AbstractType
]);
}
/**
* {@inheritdoc}
*/
public function getBlockPrefix()
public function getBlockPrefix(): string
{
return 'user_registration';
}