| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 50 | protected function configureFormFields(FormMapper $formMapper): void |
||
| 51 | { |
||
| 52 | $formMapper |
||
| 53 | ->add('title') |
||
| 54 | ->add('text') |
||
| 55 | ->add('url') |
||
| 56 | ->add('urlTitle') |
||
| 57 | ->add('label', ChoiceType::class, [ |
||
| 58 | 'choices' => [ |
||
| 59 | 'New' => NotificationInterface::LABEL_NEW, |
||
| 60 | 'Important' => NotificationInterface::LABEL_IMPORTANT, |
||
| 61 | ], |
||
| 62 | 'required' => true, |
||
| 63 | ] |
||
| 82 |