You are here

public function ConstraintAValidator::validate in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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

ConstraintAValidator

Namespace

Symfony\Component\Validator\Tests\Fixtures

Code

public function validate($value, Constraint $constraint) {
  if ('VALID' != $value) {
    $this->context
      ->addViolation('message', array(
      'param' => 'value',
    ));
    return;
  }
}