From 80eba1549d990c9fb23d643e2de6993d31f80c37 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sat, 22 Jun 2013 16:30:11 +0200 Subject: [PATCH] fix group sequence order --- book/validation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/validation.rst b/book/validation.rst index f1c676eca9a..0018667c187 100644 --- a/book/validation.rst +++ b/book/validation.rst @@ -849,7 +849,7 @@ username and the password are different only if all other validation passes use Symfony\Component\Validator\Constraints as Assert; /** - * @Assert\GroupSequence({"Strict", "User"}) + * @Assert\GroupSequence({"User", "Strict"}) */ class User implements UserInterface {