Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | protected function getStepTwo(): FormBuilderInterface |
||
21 | { |
||
22 | $form = $this->initForm(); |
||
23 | |||
24 | $form->add('authorEmail', EmailType::class, ['constraints' => $this->getAuthorEmailConstraints()]); |
||
25 | $form->add('authorName', null, ['constraints' => $this->getAuthorNameConstraints()]); |
||
26 | |||
27 | return $form; |
||
28 | } |
||
30 |