| 1 | <?php |
||
| 21 | class BooleanFilter implements FilterInterface |
||
| 22 | { |
||
| 23 | const TRUE = 'true'; |
||
| 24 | const FALSE = 'false'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function apply(DataSourceInterface $dataSource, $name, $data, array $options) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function getType() |
||
| 49 | } |
||
| 50 |