| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | class CancelAuthenticationType extends AbstractType |
||
| 26 | { |
||
| 27 | public function buildForm(FormBuilderInterface $builder, array $options): void |
||
| 28 | { |
||
| 29 | $builder->add('cancel', SubmitType::class, [ |
||
| 30 | 'label' => 'gateway.form.cancel_authentication.button.cancel', |
||
| 31 | 'attr' => ['class' => 'btn-link', 'formnovalidate' => 'formnovalidate'], |
||
| 32 | ]); |
||
| 33 | } |
||
| 34 | |||
| 35 | public function getBlockPrefix(): string |
||
| 38 | } |
||
| 39 | } |
||
| 40 |