X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fsymfony%2Fvalidator%2FViolation%2FConstraintViolationBuilder.php;fp=vendor%2Fsymfony%2Fvalidator%2FViolation%2FConstraintViolationBuilder.php;h=0d96ffe894f846d7e41814374161d19e4ec9389e;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=bf887a08ec2b80b5b07eedc06737c3ef95fae95a;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/symfony/validator/Violation/ConstraintViolationBuilder.php b/vendor/symfony/validator/Violation/ConstraintViolationBuilder.php index bf887a08e..0d96ffe89 100644 --- a/vendor/symfony/validator/Violation/ConstraintViolationBuilder.php +++ b/vendor/symfony/validator/Violation/ConstraintViolationBuilder.php @@ -22,64 +22,20 @@ use Symfony\Component\Validator\Util\PropertyPath; * * @author Bernhard Schussek * - * @internal You should not instantiate or use this class. Code against - * {@link ConstraintViolationBuilderInterface} instead. + * @internal since version 2.5. Code against ConstraintViolationBuilderInterface instead. */ class ConstraintViolationBuilder implements ConstraintViolationBuilderInterface { - /** - * @var ConstraintViolationList - */ private $violations; - - /** - * @var string - */ private $message; - - /** - * @var array - */ private $parameters; - - /** - * @var mixed - */ private $root; - - /** - * @var mixed - */ private $invalidValue; - - /** - * @var string - */ private $propertyPath; - - /** - * @var TranslatorInterface - */ private $translator; - - /** - * @var string|null - */ private $translationDomain; - - /** - * @var int|null - */ private $plural; - - /** - * @var Constraint - */ private $constraint; - - /** - * @var mixed - */ private $code; /**