public function ConstraintAValidator::validate in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/validator/Tests/Fixtures/ConstraintAValidator.php \Symfony\Component\Validator\Tests\Fixtures\ConstraintAValidator::validate()
Checks if the passed value is valid.
Parameters
mixed $value The value that should be validated:
Constraint $constraint The constraint for the validation:
Overrides ConstraintValidatorInterface::validate
File
- vendor/
symfony/ validator/ Tests/ Fixtures/ ConstraintAValidator.php, line 29
Class
Namespace
Symfony\Component\Validator\Tests\FixturesCode
public function validate($value, Constraint $constraint) {
if ('VALID' != $value) {
$this->context
->addViolation('message', array(
'param' => 'value',
));
return;
}
}