You are here

public function ConstraintAValidator::validate in Plug 7

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

lib/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;
  }
}