| 1 | <?php  | 
            ||
| 17 | class Between extends AbstractComparator { | 
            ||
| 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 = 'between';  | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 |      * {@inheritdoc} | 
            ||
| 31 | */  | 
            ||
| 32 |     protected function isValidComparison($value, $parameters) { | 
            ||
| 37 | }  | 
            ||
| 38 |