| 1 | <?php |
||
| 16 | class EnumType extends AbstractType |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var EnumRegistry |
||
| 20 | */ |
||
| 21 | private $enumRegistry; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param EnumRegistry $enumRegistry |
||
| 25 | */ |
||
| 26 | public function __construct(EnumRegistry $enumRegistry) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritdoc |
||
| 33 | */ |
||
| 34 | public function configureOptions(OptionsResolver $resolver): void |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @inheritdoc |
||
| 55 | */ |
||
| 56 | public function getParent(): string |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @inheritdoc |
||
| 63 | */ |
||
| 64 | public function getBlockPrefix(): string |
||
| 68 | } |
||
| 69 |