public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, SessionInterface $session)
 {
     $this->httpKernel = $httpKernel;
     $this->httpUtils = $httpUtils;
     $this->session = $session;
     parent::__construct($httpKernel, $httpUtils);
 }
 /**
  * @param \Symfony\Component\HttpKernel\HttpKernelInterface $httpKernel
  * @param \Symfony\Component\Security\Http\HttpUtils        $httpUtils
  * @param array                                             $options
  * @param \Psr\Log\LoggerInterface                          $logger
  * @param mixed                                             $translator
  */
 public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options, LoggerInterface $logger = null, $translator = null)
 {
     parent::__construct($httpKernel, $httpUtils, $options, $logger);
     $this->translator = $translator;
 }
 public function __construct(Router $router, HttpKernel $httpKernel, HttpUtils $httpUtils, array $options = array(), LoggerInterface $logger = null)
 {
     parent::__construct($httpKernel, $httpUtils, $options, $logger);
     $this->router = $router;
 }
 public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options, $logger = null)
 {
     parent::__construct($httpKernel, $httpUtils, $options, $logger);
 }
 public function __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options, $container)
 {
     parent::__construct($httpKernel, $httpUtils, $options);
     $this->container = $container;
 }
 /**
  * @param \Symfony\Component\HttpKernel\HttpKernel $httpKernel
  * @param \Symfony\Component\Security\Http\HttpUtils $httpUtils
  */
 public function __construct(HttpKernel $httpKernel, HttpUtils $httpUtils)
 {
     parent::__construct($httpKernel, $httpUtils, $options = []);
 }
 function __construct(HttpUtils $httpUtils, \Symfony\Component\DependencyInjection\ContainerInterface $cont, array $options)
 {
     parent::__construct($httpUtils, $options);
     $this->container = $cont;
 }