Skip to content

Commit 2500a18

Browse files
committed
[Security] use LegacyEventDispatcherProxy
1 parent a909c2e commit 2500a18

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firewall/ContextListener.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
use Psr\Log\LoggerInterface;
1515
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
16+
use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy;
1617
use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
1718
use Symfony\Component\HttpKernel\Event\RequestEvent;
1819
use Symfony\Component\HttpKernel\KernelEvents;
@@ -63,7 +64,7 @@ public function __construct(TokenStorageInterface $tokenStorage, iterable $userP
6364
$this->userProviders = $userProviders;
6465
$this->sessionKey = '_security_'.$contextKey;
6566
$this->logger = $logger;
66-
$this->dispatcher = $dispatcher;
67+
$this->dispatcher = LegacyEventDispatcherProxy::decorate($dispatcher);
6768
$this->trustResolver = $trustResolver ?: new AuthenticationTrustResolver(AnonymousToken::class, RememberMeToken::class);
6869
}
6970

0 commit comments

Comments
 (0)