Skip to content

Commit 7067e48

Browse files
committed
[Security] use LegacyEventDispatcherProxy
1 parent 3ab7d57 commit 7067e48

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Symfony/Component/Security/Http/Firewall/ContextListener.php

+2-1
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)