1 | <?php declare(strict_types = 1); |
||
22 | class TimestampType extends AbstractType |
||
23 | { |
||
24 | /** |
||
25 | * @param FormBuilderInterface $builder |
||
26 | * @param mixed[] $options |
||
27 | */ |
||
28 | public function buildForm(FormBuilderInterface $builder, array $options): void |
||
32 | |||
33 | /** |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function getParent() |
||
40 | |||
41 | /** |
||
42 | * @return string |
||
43 | */ |
||
44 | public function getBlockPrefix(): string |
||
48 | } |
||
49 |