We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1b3867 commit faaa0e4Copy full SHA for faaa0e4
Controller/SecurityController.php
@@ -14,6 +14,7 @@
14
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
15
use Symfony\Component\HttpFoundation\Request;
16
use Symfony\Component\HttpFoundation\Response;
17
+use Symfony\Component\HttpFoundation\Session\Session;
18
use Symfony\Component\Security\Core\Exception\AuthenticationException;
19
use Symfony\Component\Security\Core\Security;
20
@@ -26,7 +27,7 @@ class SecurityController extends Controller
26
27
*/
28
public function loginAction(Request $request)
29
{
- /** @var $session \Symfony\Component\HttpFoundation\Session\Session */
30
+ /** @var $session Session */
31
$session = $request->getSession();
32
33
$authErrorKey = Security::AUTHENTICATION_ERROR;
0 commit comments