8000 Removed unneeded Request argument · SofHad/symfony@80ea571 · GitHub
[go: up one dir, main page]

Skip to content

Commit 80ea571

Browse files
committed
Removed unneeded Request argument
The assigned Request instance is currently not needed in the login action and thus should be removed from the methods signature.
1 parent 281da20 commit 80ea571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AppBundle/Controller/SecurityController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SecurityController extends Controller
2727
/**
2828
* @Route("/login", name="security_login_form")
2929
*/
30-
public function loginAction(Request $request)
30+
public function loginAction()
3131
{
3232
$helper = $this->get('security.authentication_utils');
3333

0 commit comments

Comments
 (0)
0