X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fsymfony%2Fvalidator%2FConstraintViolationListInterface.php;fp=vendor%2Fsymfony%2Fvalidator%2FConstraintViolationListInterface.php;h=0489ab500a1dc71c315b2931e0d3c94794748162;hp=d96755c9a277e60e7b523fecf3e869d440804190;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/symfony/validator/ConstraintViolationListInterface.php b/vendor/symfony/validator/ConstraintViolationListInterface.php index d96755c9a..0489ab500 100644 --- a/vendor/symfony/validator/ConstraintViolationListInterface.php +++ b/vendor/symfony/validator/ConstraintViolationListInterface.php @@ -20,15 +20,11 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar { /** * Adds a constraint violation to this list. - * - * @param ConstraintViolationInterface $violation The violation to add */ public function add(ConstraintViolationInterface $violation); /** * Merges an existing violation list into this list. - * - * @param ConstraintViolationListInterface $otherList The list to merge */ public function addAll(ConstraintViolationListInterface $otherList); @@ -39,7 +35,7 @@ interface ConstraintViolationListInterface extends \Traversable, \Countable, \Ar * * @return ConstraintViolationInterface The violation * - * @throws \OutOfBoundsException If the offset does not exist. + * @throws \OutOfBoundsException if the offset does not exist */ public function get($offset);