1 | <?php |
||
20 | class OrCombine implements ValidatorInterface { |
||
21 | |||
22 | /** |
||
23 | * Checks whether the given parameters fullfil: |
||
24 | * - At least three given |
||
25 | * - The first one is a Validator or a subclass of it |
||
26 | * |
||
27 | * @param array $parameters |
||
28 | * the validation parameters |
||
29 | */ |
||
30 | protected function checkParameters($parameters) { |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function isValid($value, array $parameters) { |
||
56 | |||
57 | } |
||
58 |