You are here

public function GoogleAuthenticator::getTokenType in Google Authenticator login 7

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

Get token type.

File

./ga4php.php, line 326
Abstract GoogleAuthenticator class.

Class

GoogleAuthenticator
@file Abstract GoogleAuthenticator class.

Code

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