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