vendor/symfony/src/Symfony/Component/Validator/ConstraintValidatorInterface.php
author cavaliet
Wed, 16 May 2012 12:46:58 +0200
changeset 89 8175fa8d5812
parent 0 7f95f8617b0b
permissions -rwxr-xr-x
update configuration for document_list_profile

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\Validator;

/**
 * @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
     *
     * @return Boolean Whether or not the value is valid
     *
     * @api
     */
    function isValid($value, Constraint $constraint);

    /**
     * @return string
     *
     * @api
     */
    function getMessageTemplate();

    /**
     * @return array
     *
     * @api
     */
    function getMessageParameters();
}