public function ConstraintAValidator::validate

Checks if the passed value is valid.

@api

Parameters

mixed $value The value that should be validated:

Constraint $constraint The constraint for the validation:

Overrides ConstraintValidatorInterface::validate

File

drupal/core/vendor/symfony/validator/Symfony/Component/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;
  }
  return;
}