| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class MultiStepMessageForm extends MessageForm |
||
| 10 | { |
||
| 11 | protected function getStepOne(): FormBuilderInterface |
||
| 12 | { |
||
| 13 | $form = $this->initForm(); |
||
| 14 | |||
| 15 | $form->add('content', TextareaType::class); |
||
| 16 | |||
| 17 | return $form; |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function getStepTwo(): FormBuilderInterface |
||
| 28 | } |
||
| 29 | } |
||
| 30 |