/**
  * Reset count of failed authentication attempts.
  *
  * Unlock user account and make generation of OAuth tokens possible for this account again.
  *
  * @param string $userName
  * @param int $userType
  * @return void
  */
 public function resetAuthenticationFailuresCount($userName, $userType)
 {
     $this->requestLogWriter->resetFailuresCount($userName, $userType);
 }