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