| 1 | <?php |
||
| 17 | class Contains extends Comparator { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Holds the amount of parameters. |
||
| 21 | */ |
||
| 22 | protected $amountOfParameters = 2; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Holds the type of the validator. |
||
| 26 | */ |
||
| 27 | protected $type = 'contains'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | protected function compare($value, $parameters) { |
||
| 39 | } |
||
| 40 |