Esempio n. 1
0
 /**
  * Increment the login attempts for the user.
  *
  * @return void
  */
 public function incrementLoginAttempts()
 {
     $this->cacheLimiter->hit($this->getUniqueLoginKey());
 }
Esempio n. 2
0
 /**
  * Increment the login attempts for the user.
  *
  * @param  array  $input
  *
  * @return void
  */
 public function incrementLoginAttempts(array $input)
 {
     $this->cacheLimiter->hit($this->getLoginKey($input));
 }