Update to Drupal 8.0-dev-2015-11-17. Commits through da81cd220, Tue Nov 17 15:53:49 2015 +0000, Issue #2617224 by Wim Leers: Move around/fix some documentation.

This commit is contained in:
Pantheon Automation 2015-11-17 13:42:33 -08:00 committed by Greg Anderson
parent 4afb23bbd3
commit 7784f4c23d
929 changed files with 19798 additions and 5304 deletions

View file

@ -15,8 +15,6 @@ namespace Symfony\Component\Validator;
* A list of constraint violations.
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
* @api
*/
interface ConstraintViolationListInterface extends \Traversable, \Countable, \ArrayAccess
{
@ -24,8 +22,6 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar
* Adds a constraint violation to this list.
*
* @param ConstraintViolationInterface $violation The violation to add.
*
* @api
*/
public function add(ConstraintViolationInterface $violation);
@ -33,8 +29,6 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar
* Merges an existing violation list into this list.
*
* @param ConstraintViolationListInterface $otherList The list to merge.
*
* @api
*/
public function addAll(ConstraintViolationListInterface $otherList);
@ -46,8 +40,6 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar
* @return ConstraintViolationInterface The violation.
*
* @throws \OutOfBoundsException If the offset does not exist.
*
* @api
*/
public function get($offset);
@ -57,8 +49,6 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar
* @param int $offset The violation offset.
*
* @return bool Whether the offset exists.
*
* @api
*/
public function has($offset);
@ -67,8 +57,6 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar
*
* @param int $offset The violation offset.
* @param ConstraintViolationInterface $violation The violation.
*
* @api
*/
public function set($offset, ConstraintViolationInterface $violation);
@ -76,8 +64,6 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar
* Removes a violation at a given offset.
*
* @param int $offset The offset to remove.
*
* @api
*/
public function remove($offset);
}