1 | <?php |
||
16 | class BooleanFilter implements FilterInterface |
||
17 | { |
||
18 | const CHOICE_ANY = 'any'; |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function buildForm(FormBuilderInterface $builder, array $options) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function isApplicable(array $filterData): bool |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function getExpression(string $fieldName, array $data): Expression |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function configureOptions(OptionsResolver $options) |
||
60 | } |
||
61 |