1 | <?php |
||
19 | class Contains implements ValidatorInterface { |
||
20 | |||
21 | /** |
||
22 | * Throws an exception if the parameters don't fullfill the expected |
||
23 | * parameter count. |
||
24 | * |
||
25 | * @param integer $parameterAmount |
||
26 | * the amount of expected parameters |
||
27 | */ |
||
28 | protected function validateParameterCount($parameterAmount) { |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function isValid($value, array $parameters) { |
||
50 | } |
||
51 |