From 712a8588ced3ddcc62d6d1f87f949579ed1ea4f1 Mon Sep 17 00:00:00 2001 From: Omer Karadagli Date: Wed, 11 Mar 2015 00:48:07 +0000 Subject: [PATCH] Add missing use statement in Building Login Form doc Also removed use statement for Route as it is only needed when using annotations for routing --- cookbook/security/form_login_setup.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/security/form_login_setup.rst b/cookbook/security/form_login_setup.rst index 011ab6f6894..607cfd37586 100644 --- a/cookbook/security/form_login_setup.rst +++ b/cookbook/security/form_login_setup.rst @@ -81,8 +81,8 @@ bundle with an empty ``loginAction``:: // src/AppBundle/Controller/SecurityController.php namespace AppBundle\Controller; - use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Symfony\Bundle\FrameworkBundle\Controller\Controller; + use Symfony\Component\HttpFoundation\Request; class SecurityController extends Controller {