abstract protected function AbstractComparisonValidator::compareValues

Compares the two given values to find if their relationship is valid

Parameters

mixed $value1 The first value to compare:

mixed $value2 The second value to compare:

Return value

Boolean true if the relationship is valid, false otherwise

1 call to AbstractComparisonValidator::compareValues()
8 methods override AbstractComparisonValidator::compareValues()

File

drupal/core/vendor/symfony/validator/Symfony/Component/Validator/Constraints/AbstractComparisonValidator.php, line 74

Class

AbstractComparisonValidator
Provides a base class for the validation of property comparisons.

Namespace

Symfony\Component\Validator\Constraints

Code

protected abstract function compareValues($value1, $value2);