/opt/alt/php55/usr/share/pear/Symfony/Component/Validator
NameSizeModeActions
Constraints/-0755rm
Exception/-0755rm
Mapping/-0755rm
Resources/-0755rm
autoloader.php3390644editdlrm
ClassBasedInterface.php5720644editdlrm
Constraint.php67970644editdlrm
ConstraintValidator.php7000644editdlrm
ConstraintValidatorFactory.php22970644editdlrm
ConstraintValidatorFactoryInterface.php7750644editdlrm
ConstraintValidatorInterface.php8990644editdlrm
ConstraintViolation.php43340644editdlrm
ConstraintViolationInterface.php43530644editdlrm
ConstraintViolationList.php32450644editdlrm
ConstraintViolationListInterface.php20080644editdlrm
DefaultTranslator.php52450644editdlrm
ExecutionContext.php84950644editdlrm
ExecutionContextInterface.php123550644editdlrm
GlobalExecutionContextInterface.php19370644editdlrm
GroupSequenceProviderInterface.php5970644editdlrm
MetadataFactoryInterface.php9900644editdlrm
MetadataInterface.php28910644editdlrm
ObjectInitializerInterface.php8170644editdlrm
PropertyMetadataContainerInterface.php12090644editdlrm
PropertyMetadataInterface.php12580644editdlrm
Validation.php10980644editdlrm
ValidationVisitor.php63220644editdlrm
ValidationVisitorInterface.php35480644editdlrm
Validator.php66810644editdlrm
ValidatorBuilder.php100820644editdlrm
ValidatorBuilderInterface.php54990644editdlrm
ValidatorInterface.php35800644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/Validator/ConstraintViolationListInterface.php (2008B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator; /** * A list of constraint violations. * * @author Bernhard Schussek * * @api */ interface ConstraintViolationListInterface extends \Traversable, \Countable, \ArrayAccess { /** * Adds a constraint violation to this list. * * @param ConstraintViolationInterface $violation The violation to add. * * @api */ public function add(ConstraintViolationInterface $violation); /** * Merges an existing violation list into this list. * * @param ConstraintViolationListInterface $otherList The list to merge. * * @api */ public function addAll(ConstraintViolationListInterface $otherList); /** * Returns the violation at a given offset. * * @param integer $offset The offset of the violation. * * @return ConstraintViolationInterface The violation. * * @throws \OutOfBoundsException If the offset does not exist. * * @api */ public function get($offset); /** * Returns whether the given offset exists. * * @param integer $offset The violation offset. * * @return Boolean Whether the offset exists. * * @api */ public function has($offset); /** * Sets a violation at a given offset. * * @param integer $offset The violation offset. * @param ConstraintViolationInterface $violation The violation. * * @api */ public function set($offset, ConstraintViolationInterface $violation); /** * Removes a violation at a given offset. * * @param integer $offset The offset to remove. * * @api */ public function remove($offset); }