@inheritDoc
Overrides AbstractComparisonValidator::compareValues
File
- drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Constraints/LessThanValidator.php, line 24
Class
- LessThanValidator
- Validates values are less than the previous (<).
Namespace
Symfony\Component\Validator\Constraints
Code
protected function compareValues($value1, $value2) {
return $value1 < $value2;
}