From e3d42a971caf2356d0ac18a54c14da1abc9aba7a Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 25 Mar 2019 12:45:23 +0100 Subject: [PATCH] fixed missing dot for error message --- src/Symfony/Component/Validator/Constraints/Unique.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Validator/Constraints/Unique.php b/src/Symfony/Component/Validator/Constraints/Unique.php index 391c4eaa13..743ec02e91 100644 --- a/src/Symfony/Component/Validator/Constraints/Unique.php +++ b/src/Symfony/Component/Validator/Constraints/Unique.php @@ -27,5 +27,5 @@ class Unique extends Constraint self::IS_NOT_UNIQUE => 'IS_NOT_UNIQUE', ]; - public $message = 'This collection should contain only unique elements'; + public $message = 'This collection should contain only unique elements.'; }