Esempio n. 1
0
 /**
  * Clear the login locks for the given user credentials.
  *
  * @return void
  */
 public function clearLoginAttempts()
 {
     $this->cacheLimiter->clear($this->getUniqueLoginKey());
 }
Esempio n. 2
0
 /**
  * Clear the login locks for the given user credentials.
  *
  * @param  array  $input
  *
  * @return void
  */
 public function clearLoginAttempts(array $input)
 {
     $this->cacheLimiter->clear($this->getLoginKey($input));
 }