You are here

function GoogleAuthenticator::getTokenType in Google Authenticator login 6

Same name and namespace in other branches
  1. 7 ga4php.php \GoogleAuthenticator::getTokenType()

File

./ga4php.php, line 312

Class

GoogleAuthenticator

Code

function getTokenType($username) {
  $data = $this
    ->internalGetData($username);
  $toktype = $data["tokentype"];
  return $toktype;
}