/**
  * Create a new database user provider.
  *
  * @param  \Illuminate\Contracts\Hashing\Hasher $hasher
  * @param  string $model
  */
 public function __construct(Hasher $hasher, $model)
 {
     parent::__construct($hasher, $model);
 }
 public function __construct(HasherInterface $hasher, $model, $config)
 {
     parent::__construct($hasher, $model);
     $this->config = $config;
 }
 public function __construct(HasherContract $hasher, $model, $adldap)
 {
     $this->adldap = $adldap;
     parent::__construct($hasher, $model);
 }
 /**
  * @param HasherContract $hasher
  * @param string $model
  * @param CacheContract $cache
  */
 public function __construct(HasherContract $hasher, $model, CacheContract $cache)
 {
     parent::__construct($hasher, $model);
     $this->cache = $cache;
 }
Beispiel #5
0
 public function __construct()
 {
     parent::__construct(new BcryptHasher(), 'User');
 }
Beispiel #6
0
 /**
  * Create a new database user provider.
  *
  * @param  \Illuminate\Contracts\Hashing\Hasher $hasher
  * @param  string $model
  */
 public function __construct(HasherContract $hasher, $model)
 {
     parent::__construct($hasher, $model);
     $this->model = $model;
     $this->hasher = $hasher;
 }
 /**
  * Create a new Eloquent LDAP user provider.
  *
  * @param  array $ldapConfig
  * @param  \Illuminate\Contracts\Hashing\Hasher  $hasher
  * @param  string  $model
  * @return void
  */
 public function __construct($ldapConfig, HasherContract $hasher, $model)
 {
     parent::__construct($hasher, $model);
     $this->ldapConfig = $ldapConfig;
 }
 public function __construct(HasherInterface $hasher, $model, $config)
 {
     parent::__construct($hasher, $model);
     $this->config = $config;
     $this->adLdap = new adLDAP($this->config);
 }