@author Bernhard Schussek <bschussek@gmail.com>
Expanded class hierarchy of RangeValidator
class RangeValidator extends ConstraintValidator {
/**
* {@inheritDoc}
*/
public function validate($value, Constraint $constraint) {
if (null === $value) {
return;
}
if (!is_numeric($value)) {
$this->context
->addViolation($constraint->invalidMessage, array(
'{{ value }}' => $value,
));
return;
}
if (null !== $constraint->max && $value > $constraint->max) {
$this->context
->addViolation($constraint->maxMessage, array(
'{{ value }}' => $value,
'{{ limit }}' => $constraint->max,
));
return;
}
if (null !== $constraint->min && $value < $constraint->min) {
$this->context
->addViolation($constraint->minMessage, array(
'{{ value }}' => $value,
'{{ limit }}' => $constraint->min,
));
}
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConstraintValidator:: |
protected | property | ||
ConstraintValidator:: |
public | function |
Initializes the constraint validator. Overrides ConstraintValidatorInterface:: |
1 |
RangeValidator:: |
public | function |
Checks if the passed value is valid. Overrides ConstraintValidatorInterface:: |