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