/**
  * Constructor
  *
  * @param Zend_Auth   $zendAuth
  */
 public function __construct(HttpUtils $httpUtils, array $options, $authAdapter, $em, $userService)
 {
     $this->authAdapter = $authAdapter;
     $this->em = $em;
     $this->userService = $userService;
     parent::__construct($httpUtils, $options);
 }
 public function __construct(HttpUtils $httpUtils, array $options = array(), $databaseService, $router, $categoryService)
 {
     parent::__construct($httpUtils, $options);
     $this->databaseService = $databaseService;
     $this->router = $router;
     $this->categoryService = $categoryService;
 }
 public function __construct(TokenGenerator $tokenGenerator, EntityManager $entityManager, Router $router, HttpUtils $httpUtils, array $options = array())
 {
     parent::__construct($httpUtils, $options);
     $this->tokenGenerator = $tokenGenerator;
     $this->entityManager = $entityManager;
     $this->router = $router;
 }
 /**
  * Constructor
  * @param RouterInterface   $router
  * @param EntityManager     $em
  */
 public function __construct(RouterInterface $router, $options, EntityManager $em, Session $session, HttpUtils $httpUtils, NotificationsHelper $notificationsHelper)
 {
     parent::__construct($httpUtils, $options);
     $this->router = $router;
     $this->em = $em;
     $this->session = $session;
     $this->notificationsHelper = $notificationsHelper;
 }
 public function __construct(TokenStorageInterface $tokenStorage, NameUtils $nameUtils, CamdramUserProvider $camdramUserProvider, ExternalLoginUserProvider $externalUserProvider, UserLinker $userLinker, HttpUtils $httpUtils, $providerKey)
 {
     $this->tokenStorage = $tokenStorage;
     $this->nameUtils = $nameUtils;
     $this->camdramUserProvider = $camdramUserProvider;
     $this->externalUserProvider = $externalUserProvider;
     $this->userLinker = $userLinker;
     $this->setProviderKey($providerKey);
     parent::__construct($httpUtils, array());
 }
 /**
  * @param \Symfony\Component\Security\Http\HttpUtils $httpUtils
  */
 public function __construct(HttpUtils $httpUtils)
 {
     parent::__construct($httpUtils, $options = []);
 }
 /**
  * Constructor.
  *
  * @param HttpUtils $httpUtils
  * @param array     $options   Options for processing a successful authentication attempt.
  */
 public function __construct(HttpUtils $httpUtils, EntityManager $em, RememberMeServicesInterface $rememberMeServices = null, array $options = array())
 {
     parent::__construct($httpUtils, $options);
     $this->em = $em;
     $this->rememberMeServices = $rememberMeServices;
 }
Beispiel #8
0
 public function __construct($saltKey, HttpUtils $httpUtils, array $options)
 {
     parent::__construct($httpUtils, $options);
     $this->saltKey = base64_decode($saltKey);
 }
 /**
  * Constructor.
  * @param HttpUtils $httpUtils
  * @param array     $options   Options for processing a successful authentication attempt.
  * @param string|null $providerKey
  */
 public function __construct(HttpUtils $httpUtils, array $options = array(), $providerKey = null)
 {
     parent::__construct($httpUtils, $options);
     $this->setProviderKey($providerKey);
 }
 /**
  * @param Kernel $vanillaKernel
  * @param UserTransformerInterface $userTransformer
  * @param HttpUtils $httpUtils
  * @param array $options
  */
 public function __construct(Kernel $vanillaKernel, UserTransformerInterface $userTransformer, HttpUtils $httpUtils, array $options)
 {
     parent::__construct($httpUtils, $options);
     $this->vanillaKernel = $vanillaKernel;
     $this->userTransformer = $userTransformer;
 }
 public function __construct(HttpUtils $httpUtils, array $options, $container)
 {
     parent::__construct($httpUtils, $options);
     $this->container = $container;
 }
 public function __construct(HttpUtils $httpUtils, array $options, $container)
 {
     parent::__construct($httpUtils, $options);
     $this->em = $container->get('doctrine.orm.entity_manager');
     $this->router = $container->get('router');
 }
 public function __construct(HttpUtils $httpUtils, UserService $userService, array $options = array())
 {
     $this->userService = $userService;
     parent::__construct($httpUtils, $options);
 }
 /**
  * AuthSuccessHandler constructor.
  * @param HttpUtils $httpUtils
  * @param ContainerInterface $cont
  * @param array $options
  */
 public function __construct(HttpUtils $httpUtils, ContainerInterface $cont, array $options)
 {
     parent::__construct($httpUtils, $options);
     $this->container = $cont;
 }
 /**
  * Constructor
  * @param HttpUtils $httpUtils
  * @param EntityManager $em
  * @param array $options
  */
 public function __construct(HttpUtils $httpUtils, EntityManager $em, $options)
 {
     parent::__construct($httpUtils, $options);
     $this->em = $em;
 }
 public function __construct(HttpUtils $httpUtils, array $options, $router, $routes)
 {
     parent::__construct($httpUtils, $options);
     $this->router = $router;
     $this->routes = $routes;
 }
 public function __construct(HttpUtils $httpUtils, \Symfony\Component\DependencyInjection\ContainerInterface $cont, array $options)
 {
     parent::__construct($httpUtils, $options);
     $this->container = $cont;
 }
 /**
  * Authentication Success Construct
  * 
  * @param HttpUtils $httpUtils
  * @param array $options
  * @param Application $app
  */
 public function __construct(HttpUtils $httpUtils, array $options, Application $app)
 {
     parent::__construct($httpUtils, $options);
     $this->app = $app;
 }
 public function __construct(HttpUtils $httpUtils, SecurityContext $security, EntityManager $em)
 {
     parent::__construct($httpUtils, []);
     $this->security = $security;
     $this->em = $em;
 }
 public function __construct(HttpUtils $httpUtils, array $options, $router)
 {
     $this->router = $router;
     parent::__construct($httpUtils, $options);
 }
 public function __construct(Router $router, Session $session, HttpUtils $httpUtils)
 {
     parent::__construct($httpUtils);
     $this->router = $router;
     $this->session = $session;
 }
 public function __construct(HttpUtils $httpUtils, Application $app, array $options = array())
 {
     $this->app = $app;
     parent::__construct($httpUtils, $options);
 }
 /**
  * Constructor.
  *
  * @param HttpUtils       $httpUtils
  * @param array           $options   Options for processing a successful authentication attempt.
  * @param RouterInterface $router
  */
 public function __construct(HttpUtils $httpUtils, array $options = array(), RouterInterface $router)
 {
     parent::__construct($httpUtils, $options);
     $this->router = $router;
 }