1 | <?php |
||
13 | class KeyValueType extends AbstractType |
||
14 | { |
||
15 | /** |
||
16 | * @param FormBuilderInterface $builder |
||
17 | * @param array $options |
||
18 | */ |
||
19 | public function buildForm(FormBuilderInterface $builder, array $options) |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | * BC for SF < 2.7 |
||
30 | */ |
||
31 | public function setDefaultOptions(OptionsResolverInterface $resolver) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function configureOptions(OptionsResolver $resolver) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | * BC for SF < 3.0 |
||
50 | */ |
||
51 | public function getName() |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function getBlockPrefix() |
||
63 | } |
||
64 |