1 | <?php |
||
28 | abstract class AbstractEmptySpecificationFilter implements FilterInterface |
||
29 | { |
||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | * |
||
33 | * @see \Mcustiel\SimpleRequest\Interfaces\Specificable::setSpecification() |
||
34 | */ |
||
35 | public function setSpecification($specification = null) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | * |
||
42 | * @see \Mcustiel\SimpleRequest\Interfaces\FilterInterface::filter() |
||
43 | */ |
||
44 | abstract public function filter($value); |
||
45 | } |
||
46 |