From 160fa5e5f058e57f7a8dc1dbf0c1b96c4b13a977 Mon Sep 17 00:00:00 2001 From: Oscar Gala y Hondema Date: Fri, 12 Sep 2014 09:50:29 -0400 Subject: [PATCH] Symfony\Component\Validator\ExecutionContextInterface is deprecated since 2.5. Replaced by Symfony\Component\Validator\Context\ExecutionContextInterface --- reference/constraints/Callback.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/constraints/Callback.rst b/reference/constraints/Callback.rst index 36b55e97910..bbd375f9dfd 100644 --- a/reference/constraints/Callback.rst +++ b/reference/constraints/Callback.rst @@ -50,7 +50,7 @@ Configuration namespace Acme\BlogBundle\Entity; use Symfony\Component\Validator\Constraints as Assert; - use Symfony\Component\Validator\ExecutionContextInterface; + use Symfony\Component\Validator\Context\ExecutionContextInterface; class Author { @@ -100,7 +100,7 @@ can set "violations" directly on this object and determine to which field those errors should be attributed:: // ... - use Symfony\Component\Validator\ExecutionContextInterface; + use Symfony\Component\Validator\Context\ExecutionContextInterface; class Author { @@ -156,7 +156,7 @@ your validation function is ``Vendor\Package\Validator::validate()``:: namespace Vendor\Package; - use Symfony\Component\Validator\ExecutionContextInterface; + use Symfony\Component\Validator\Context\ExecutionContextInterface; class Validator {