X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/1cb68943bd0b3433112e716e13f3b4753de4a06a..0811e272814cf05d6fc8bc76646a0be99bf79bb9:/Listener/LogoutListener.php

diff --git a/Listener/LogoutListener.php b/Listener/LogoutListener.php
index 304f123..8561250 100644
--- a/Listener/LogoutListener.php
+++ b/Listener/LogoutListener.php
@@ -11,6 +11,8 @@
 
 namespace Rapsys\UserBundle\Listener;
 
+use Rapsys\UserBundle\RapsysUserBundle;
+
 use Symfony\Component\DependencyInjection\ContainerInterface;
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
 use Symfony\Component\HttpFoundation\RedirectResponse;
@@ -23,8 +25,6 @@ use Symfony\Component\Routing\RequestContext;
 use Symfony\Component\Routing\RouterInterface;
 use Symfony\Component\Security\Http\Event\LogoutEvent;
 
-use Rapsys\UserBundle\RapsysUserBundle;
-
 /**
  * {@inheritdoc}
  */
@@ -34,26 +34,15 @@ class LogoutListener implements EventSubscriberInterface {
 	 */
 	protected $config;
 
-	/**
-	 * Target url
-	 */
-	private $targetUrl;
-
 	/**
 	 * {@inheritdoc}
 	 *
 	 * @xxx Second argument will be replaced by security.firewalls.main.logout.target
 	 * @see vendor/symfony/security-bundle/Resources/config/security_listeners.php +79
 	 */
-	public function __construct(ContainerInterface $container, string $targetUrl, RouterInterface $router) {
+	public function __construct(protected ContainerInterface $container, protected string $targetUrl, protected RouterInterface $router) {
 		//Set config
 		$this->config = $container->getParameter(RapsysUserBundle::getAlias());
-
-		//Set target url
-		$this->targetUrl = $targetUrl;
-
-		//Set router
-		$this->router = $router;
 	}
 
 	/**