Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class AddressTypeExtension extends AbstractTypeExtension |
||
13 | { |
||
14 | public function __construct( |
||
15 | private bool $isRequired, |
||
16 | ) { |
||
17 | } |
||
18 | |||
19 | public function buildForm(FormBuilderInterface $builder, array $options): void |
||
27 | ], |
||
28 | ); |
||
29 | } |
||
30 | |||
31 | public static function getExtendedTypes(): array |
||
35 | ]; |
||
36 | } |
||
38 |