public function __construct(AbstractContainer $navService, AuthenticationServiceInterface $authService, IUsersRepository $usersRepository, $maxLoginTries)
 {
     parent::__construct($navService, $authService);
     $this->usersRepository = $usersRepository;
     $this->maxLoginTries = $maxLoginTries;
 }
Beispiel #2
0
 public function __construct(AbstractContainer $navService, AuthenticationServiceInterface $authService)
 {
     parent::__construct($navService, $authService);
 }
Beispiel #3
0
 public function __construct(AbstractContainer $navService, AuthenticationServiceInterface $authService, IWordPressRepository $wpRepo)
 {
     parent::__construct($navService, $authService);
     $this->wpRepo = $wpRepo;
 }
 public function __construct(AbstractContainer $navService, AuthenticationServiceInterface $authService, IClientsRepository $clientsRepository)
 {
     parent::__construct($navService, $authService);
     $this->clientsRepository = $clientsRepository;
 }