class ConstraintViolationList implements IteratorAggregate, ConstraintViolationListInterface
Default implementation of {@ConstraintViolationListInterface}.
Methods
__construct(array $violations = array()) Creates a new constraint violation list. | ||
string | __toString() Converts the violation into a string for debugging purposes. | |
add(ConstraintViolationInterface $violation) Adds a constraint violation to this list. | ||
addAll(ConstraintViolationListInterface $otherList) Merges an existing violation list into this list. | ||
ConstraintViolationInterface | get(int $offset) Returns the violation at a given offset. | |
bool | has(int $offset) Returns whether the given offset exists. | |
set(int $offset, ConstraintViolationInterface $violation) Sets a violation at a given offset. | ||
remove(int $offset) Removes a violation at a given offset. | ||
ArrayIterator|ConstraintViolationInterface[] | getIterator() {@inheritdoc} | |
count() {@inheritdoc} | ||
offsetExists($offset) {@inheritdoc} | ||
offsetGet($offset) {@inheritdoc} | ||
offsetSet($offset, $violation) {@inheritdoc} | ||
offsetUnset($offset) {@inheritdoc} |
Details
__construct(array $violations = array())
Creates a new constraint violation list.
string __toString()
Converts the violation into a string for debugging purposes.
add(ConstraintViolationInterface $violation)
Adds a constraint violation to this list.
addAll(ConstraintViolationListInterface $otherList)
Merges an existing violation list into this list.
ConstraintViolationInterface get(int $offset)
Returns the violation at a given offset.
bool has(int $offset)
Returns whether the given offset exists.
set(int $offset, ConstraintViolationInterface $violation)
Sets a violation at a given offset.
remove(int $offset)
Removes a violation at a given offset.
ArrayIterator|ConstraintViolationInterface[] getIterator()
{@inheritdoc}
count()
{@inheritdoc}
offsetExists($offset)
{@inheritdoc}
offsetGet($offset)
{@inheritdoc}
offsetSet($offset, $violation)
{@inheritdoc}
offsetUnset($offset)
{@inheritdoc}
Please login to continue.