Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| PaymentMethodType | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| buildForm | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace App\Form; |
| 6 | |
| 7 | use Override; |
| 8 | use Symfony\Component\Form\AbstractType; |
| 9 | use Symfony\Component\Form\FormBuilderInterface; |
| 10 | |
| 11 | class PaymentMethodType extends AbstractType |
| 12 | { |
| 13 | #[Override] |
| 14 | public function buildForm( |
| 15 | FormBuilderInterface $builder, |
| 16 | array $options |
| 17 | ): void |
| 18 | { |
| 19 | $builder->add('name'); |
| 20 | } |
| 21 | } |