You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Controller/SecurityController.php
+8
Original file line number
Diff line number
Diff line change
@@ -51,11 +51,17 @@ public function loginAction(): Response
51
51
]);
52
52
}
53
53
54
+
/**
55
+
* @return never
56
+
*/
54
57
publicfunctioncheckAction()
55
58
{
56
59
thrownew \RuntimeException('You must configure the check path to be handled by the firewall using form_login in your security firewall configuration.');
57
60
}
58
61
62
+
/**
63
+
* @return never
64
+
*/
59
65
publicfunctionlogoutAction()
60
66
{
61
67
thrownew \RuntimeException('You must activate the logout in your security firewall configuration.');
@@ -64,6 +70,8 @@ public function logoutAction()
64
70
/**
65
71
* Renders the login template with the given parameters. Overwrite this function in
66
72
* an extended controller to provide additional data for the login template.
0 commit comments