| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function buildForm(FormBuilderInterface $builder, array $options) |
||
| 42 | { |
||
| 43 | $builder |
||
| 44 | ->add('name') |
||
| 45 | ->add('status', ChoiceType::class, [ |
||
| 46 | 'choices' => [ |
||
| 47 | Task::STATUS_REMAINING => Task::STATUS_REMAINING, |
||
| 48 | Task::STATUS_COMPLETED => Task::STATUS_COMPLETED |
||
| 49 | ] |
||
| 50 | ]) |
||
| 51 | ->add('submit', SubmitType::class); |
||
| 52 | } |
||
| 53 | } |
||
| 54 |