This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Validator/ConstraintViolationList.php

116 lines
2.4 KiB
PHP
Raw Normal View History

<?php
2010-10-02 11:42:31 +01:00
/*
* This file is part of the Symfony package.
2010-10-02 11:42:31 +01:00
*
* (c) Fabien Potencier <fabien@symfony.com>
2010-10-02 11:42:31 +01:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2010-10-02 11:42:31 +01:00
*/
namespace Symfony\Component\Validator;
/**
* An array-acting object that holds many ConstrainViolation instances.
*/
2011-03-28 13:54:37 +01:00
class ConstraintViolationList implements \IteratorAggregate, \Countable, \ArrayAccess
{
protected $violations = array();
/**
* @return string
*/
public function __toString()
{
$string = '';
foreach ($this->violations as $violation) {
$root = $violation->getRoot();
$class = is_object($root) ? get_class($root) : $root;
$string .= <<<EOF
{$class}.{$violation->getPropertyPath()}:
{$violation->getMessage()}
EOF;
}
return $string;
}
/**
* Add a ConstraintViolation to this list.
*
* @param ConstraintViolation $violation
*/
public function add(ConstraintViolation $violation)
{
$this->violations[] = $violation;
}
/**
* Merge an existing ConstraintViolationList into this list.
*
* @param ConstraintViolationList $violations
*/
public function addAll(ConstraintViolationList $violations)
{
foreach ($violations->violations as $violation) {
$this->violations[] = $violation;
}
}
/**
* @see IteratorAggregate
*/
public function getIterator()
{
return new \ArrayIterator($this->violations);
}
/**
* @see Countable
*/
public function count()
{
return count($this->violations);
}
2011-03-28 13:54:37 +01:00
/**
* @see ArrayAccess
*/
public function offsetExists($offset)
{
return isset($this->violations[$offset]);
}
/**
* @see ArrayAccess
*/
public function offsetGet($offset)
{
return isset($this->violations[$offset]) ? $this->violations[$offset] : null;
}
/**
* @see ArrayAccess
*/
public function offsetSet($offset, $value)
{
if (null === $offset) {
2011-03-28 13:54:37 +01:00
$this->violations[] = $value;
} else {
$this->violations[$offset] = $value;
}
}
/**
* @see ArrayAccess
*/
public function offsetUnset($offset)
{
unset($this->violations[$offset]);
}
2011-06-08 11:12:55 +01:00
2011-06-08 11:16:48 +01:00
}