| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function buildForm(FormBuilderInterface $builder, array $options) |
||
| 18 | { |
||
| 19 | $builder |
||
| 20 | ->add('name', TextType::class, [ |
||
| 21 | 'label' => 'Name of the list', |
||
| 22 | 'attr' => [], |
||
| 23 | 'required' => true |
||
| 24 | ]) |
||
| 25 | ->add('submit', SubmitType::class, [ |
||
| 26 | 'label' => 'Validate', |
||
| 27 | 'attr' => [] |
||
| 28 | ]); |
||
| 41 |