| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class VideoSearchType extends AbstractType |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | public function buildForm(FormBuilderInterface $builder, array $options) |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function configureOptions(OptionsResolver $resolver) |
||
| 32 | { |
||
| 33 | $resolver->setDefaults(array( |
||
| 34 | 'method' => 'GET', |
||
| 35 | 'required' => false, |
||
| 36 | 'translation_domain' => 'video', |
||
| 37 | )); |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function getBlockPrefix() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |