* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator; /** * @author Bernhard Schussek * * @api */ interface ConstraintValidatorInterface { /** * Initializes the constraint validator. * * @param ExecutionContext $context The current validation context */ function initialize(ExecutionContext $context); /** * Checks if the passed value is valid. * * @param mixed $value The value that should be validated * @param Constraint $constraint The constrain for the validation * * @api */ function validate($value, Constraint $constraint); }