Пример #1
0
 public function __construct(HttpUtils $httpUtils, $rememberMeCookieName, $rememberMeCookiePath)
 {
     parent::__construct($httpUtils);
     $this->rememberMeCookieName = $rememberMeCookieName;
     $this->rememberMeCookiePath = $rememberMeCookiePath;
 }
 public function __construct(HttpUtils $httpUtils, $targetUrl = '/', Session $session)
 {
     parent::__construct($httpUtils, $targetUrl);
     $this->session = $session;
 }
Пример #3
0
 /**
  * @param Kernel $vanillaKernel
  * @param HttpUtils $httpUtils
  * @param string $targetUrl
  */
 public function __construct(Kernel $vanillaKernel, HttpUtils $httpUtils, $targetUrl = '/')
 {
     parent::__construct($httpUtils, $targetUrl);
     $this->vanillaKernel = $vanillaKernel;
 }
 /**
  * @param HttpUtils $httpUtils
  * @param string    $targetUrl
  * @param Router    $router
  */
 public function __construct(HttpUtils $httpUtils, $targetUrl = '', ContainerInterface $container = null, Logger $logger = null)
 {
     $this->container = $container;
     $this->logger = $logger;
     parent::__construct($httpUtils, $targetUrl);
 }
Пример #5
0
 /**
  * {@inheritdoc}
  * @param AccessTokenManagerInterface $accessTokenManager
  * @param RefreshTokenManagerInterface $refreshTokenManager
  * @param HttpUtils $httpUtils
  * @param string $targetUrl
  */
 public function __construct(AccessTokenManagerInterface $accessTokenManager, RefreshTokenManagerInterface $refreshTokenManager, HttpUtils $httpUtils, $targetUrl = '/')
 {
     parent::__construct($httpUtils, $targetUrl);
     $this->accessTokenManager = $accessTokenManager;
     $this->refreshTokenManager = $refreshTokenManager;
 }
 public function __construct($csrfProvider, HttpUtils $httpUtils, $targetUrl = '/')
 {
     $this->csrfProvider = $csrfProvider;
     parent::__construct($httpUtils, $targetUrl);
 }
 public function __construct(HttpUtils $httpUtils, Application $app, $targetUrl = '/')
 {
     $this->app = $app;
     parent::__construct($httpUtils, $targetUrl);
 }
 /**
  * @param HttpUtils $httpUtils
  * @param string    $targetUrl
  */
 public function __construct(HttpUtils $httpUtils, $targetUrl, $securityContext)
 {
     parent::__construct($httpUtils, $targetUrl);
     $this->securityContext = $securityContext;
 }
Пример #9
0
 /**
  * {@inheritdoc}
  *
  * @param SessionInterface $session
  * @param ChannelContextInterface $channelContext
  */
 public function __construct(HttpUtils $httpUtils, $targetUrl, SessionInterface $session, ChannelContextInterface $channelContext)
 {
     parent::__construct($httpUtils, $targetUrl);
     $this->session = $session;
     $this->channelContext = $channelContext;
 }