| 1 | <?php |
||
| 12 | final class StartDateChoiceType extends AbstractType |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var StartDateProviderInterface |
||
| 16 | */ |
||
| 17 | private $startDateProvider; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * StartDateChoiceType constructor. |
||
| 21 | * |
||
| 22 | * @param StartDateProviderInterface $startDateProvider |
||
| 23 | */ |
||
| 24 | public function __construct(StartDateProviderInterface $startDateProvider) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function configureOptions(OptionsResolver $resolver): void |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | public function getParent(): string |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function getBlockPrefix(): string |
||
| 56 | } |
||
| 57 |