Removed unused private property

This commit is contained in:
Iltar van der Berg 2017-09-26 12:02:43 +02:00
parent b90ce05c24
commit 6522c05876
1 changed files with 0 additions and 2 deletions

View File

@ -33,7 +33,6 @@ use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class ContextListener implements ListenerInterface
{
private $tokenStorage;
private $contextKey;
private $sessionKey;
private $logger;
private $userProviders;
@ -54,7 +53,6 @@ class ContextListener implements ListenerInterface
$this->tokenStorage = $tokenStorage;
$this->userProviders = $userProviders;
$this->contextKey = $contextKey;
$this->sessionKey = '_security_'.$contextKey;
$this->logger = $logger;
$this->dispatcher = $dispatcher;