| 1 | <?php declare(strict_types = 1); |
||
| 11 | class BooleanType extends AbstractType |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param array<mixed> $options |
||
| 15 | */ |
||
| 16 | public function buildForm(FormBuilderInterface $builder, array $options): void |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Set parameters for the boolean field. Acceptable values: true, false. |
||
| 27 | * Default value: false. |
||
| 28 | */ |
||
| 29 | public function configureOptions(OptionsResolver $resolver): void |
||
| 43 | |||
| 44 | public function getParent(): string |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @return string|null |
||
| 51 | */ |
||
| 52 | public function getBlockPrefix(): string |
||
| 56 | } |
||
| 57 |