You are here

private function AuthTokenProvider::tokenExists in TMGMT Translator Smartling 8.3

Same name and namespace in other branches
  1. 8.4 vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php \Smartling\AuthApi\AuthTokenProvider::tokenExists()
  2. 8.2 api-sdk-php/src/AuthApi/AuthTokenProvider.php \Smartling\AuthApi\AuthTokenProvider::tokenExists()
  3. 8.2 vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php \Smartling\AuthApi\AuthTokenProvider::tokenExists()

Checks if token exists

5 calls to AuthTokenProvider::tokenExists()
AuthTokenProvider::getAccessToken in vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php
@inheritdoc
AuthTokenProvider::getTokenType in vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php
@inheritdoc
AuthTokenProvider::refreshToken in vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php
Renews tokens
AuthTokenProvider::tokenCanBeRenewed in vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php
Checks if token can be renewed
AuthTokenProvider::tokenExpired in vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php
Checks if token is expired

File

vendor/smartling/api-sdk-php/src/AuthApi/AuthTokenProvider.php, line 127

Class

AuthTokenProvider
Class AuthTokenProvider @package Smartling\AuthApi

Namespace

Smartling\AuthApi

Code

private function tokenExists() {
  return is_array($this->data) && array_key_exists(self::RESPONSE_KEY_ACCESS_TOKEN, $this->data);
}