| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | class LengthBetween extends AbstractComparator |
||
| 18 | { |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Holds the amount of parameters. |
||
| 22 | */ |
||
| 23 | protected $amountOfParameters = 2; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Holds the type of the validator. |
||
| 27 | */ |
||
| 28 | protected $type = 'lengthBetween'; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | 1 | protected function isValidComparison($value, $parameters) |
|
| 41 |