public function __construct(AbstractContainer $navService, AuthenticationServiceInterface $authService, IUsersRepository $usersRepository, $maxLoginTries) { parent::__construct($navService, $authService); $this->usersRepository = $usersRepository; $this->maxLoginTries = $maxLoginTries; }
public function __construct(AbstractContainer $navService, AuthenticationServiceInterface $authService) { parent::__construct($navService, $authService); }
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; }