From 82f503f5d7f86ced72fb871069a232127e0f64a3 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Sat, 17 Oct 2015 12:34:59 +0200 Subject: [PATCH] fix use statement --- cookbook/doctrine/registration_form.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/doctrine/registration_form.rst b/cookbook/doctrine/registration_form.rst index ac6840d8a4c..a725288f6be 100644 --- a/cookbook/doctrine/registration_form.rst +++ b/cookbook/doctrine/registration_form.rst @@ -367,7 +367,7 @@ option to ``false``:: // src/AppBundle/Form/UserType.php // ... - use Symfony\\Component\\Validator\\Constraints\\IsTrue; + use Symfony\Component\Validator\Constraints\IsTrue; class UserType extends AbstractType {