Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class RegistrationForm extends BaseUserConfirmType |
||
11 | { |
||
12 | public function buildForm(FormBuilderInterface $builder, array $options) |
||
13 | { |
||
14 | parent::buildForm($builder, $options); |
||
15 | $builder |
||
16 | ->add('username') |
||
17 | ; |
||
18 | } |
||
19 | |||
20 | public function configureOptions(OptionsResolver $resolver) |
||
26 | )); |
||
27 | } |
||
29 |