mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
fix: missing comma
This commit is contained in:
@@ -11,6 +11,7 @@ use Symfony\Component\HttpFoundation\Cookie;
|
|||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
||||||
|
use Symfony\Component\HttpKernel\KernelInterface;
|
||||||
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
||||||
use Symfony\Component\Security\Core\User\UserInterface;
|
use Symfony\Component\Security\Core\User\UserInterface;
|
||||||
use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface;
|
use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface;
|
||||||
@@ -47,7 +48,7 @@ class JWTAuthenticator implements AuthenticationSuccessHandlerInterface
|
|||||||
time() + 604800, // expiration
|
time() + 604800, // expiration
|
||||||
'/',
|
'/',
|
||||||
null,
|
null,
|
||||||
!$this->kernel->isDebug()
|
!$this->kernel->isDebug(),
|
||||||
true,
|
true,
|
||||||
false,
|
false,
|
||||||
'strict'
|
'strict'
|
||||||
|
|||||||
Reference in New Issue
Block a user