1 | <?php |
||
26 | abstract class AbstractIterableValidator extends AbstractAnnotationSpecifiedValidator |
||
27 | { |
||
28 | /** |
||
29 | * List of items specified in the annotation. |
||
30 | * |
||
31 | * @var \Mcustiel\SimpleRequest\Interfaces\ValidatorInterface|\Mcustiel\SimpleRequest\Interfaces\ValidatorInterface[] |
||
32 | */ |
||
33 | protected $items = []; |
||
34 | |||
35 | /** |
||
36 | * {@inherit} |
||
37 | * |
||
38 | * @see \Mcustiel\SimpleRequest\Validator\AbstractAnnotationSpecifiedValidator::setSpecification() |
||
39 | */ |
||
40 | 76 | public function setSpecification($specification = null) |
|
48 | |||
49 | /** |
||
50 | * {@inherit} |
||
51 | * |
||
52 | * @see \Mcustiel\SimpleRequest\Validator\AbstractAnnotationSpecifiedValidator::validate() |
||
53 | */ |
||
54 | 76 | protected function checkSpecificationIsArray($specification) |
|
62 | } |
||
63 |