| 1 | <?php |
||
| 22 | abstract class AbstractEmptySpecificationFilter implements FilterInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | * |
||
| 27 | * @see \Mcustiel\SimpleRequest\Interfaces\Specificable::setSpecification() |
||
| 28 | * @codeCoverageIgnore |
||
| 29 | */ |
||
| 30 | public function setSpecification($specification = null) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | * |
||
| 37 | * @see \Mcustiel\SimpleRequest\Interfaces\FilterInterface::filter() |
||
| 38 | */ |
||
| 39 | abstract public function filter($value); |
||
| 40 | } |
||
| 41 |