From b45bc5099ff162edd2568ab2f6c70c36f517112d Mon Sep 17 00:00:00 2001 From: Krzysztof Lechowski Date: Sun, 31 Mar 2019 00:16:52 +0000 Subject: [PATCH] minor - controller in app, rather than in bundle --- security/form_login.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/security/form_login.rst b/security/form_login.rst index 981b71feccb..fc5229579db 100644 --- a/security/form_login.rst +++ b/security/form_login.rst @@ -74,7 +74,7 @@ First, enable ``form_login`` under your firewall: Now, when the security system initiates the authentication process, it will redirect the user to the login form ``/login``. Implementing this login form -is your job. First, create a new ``SecurityController`` inside a bundle:: +is your job. First, create a new ``SecurityController`` inside your app:: // src/Controller/SecurityController.php namespace App\Controller;