/var/www/vhosts/ihelp.ro/httpdocs/vendor/google/auth/src
NameSizeModeActions
Cache/-0755rm
Credentials/-0755rm
HttpHandler/-0755rm
Middleware/-0755rm
AccessToken.php183120644editdlrm
ApplicationDefaultCredentials.php137560644editdlrm
CacheTrait.php26090644editdlrm
CredentialsLoader.php103080644editdlrm
FetchAuthTokenCache.php89160644editdlrm
FetchAuthTokenInterface.php16670644editdlrm
GCECache.php23610644editdlrm
GetQuotaProjectInterface.php9470644editdlrm
Iam.php31510644editdlrm
IamSignerTrait.php22740644editdlrm
OAuth2.php442450644editdlrm
ProjectIdProviderInterface.php9620644editdlrm
ServiceAccountSignerTrait.php18460644editdlrm
SignBlobInterface.php15310644editdlrm
UpdateMetadataInterface.php12450644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/google/auth/src/GCECache.php (2361B)
$cacheConfig Configuration for the cache * @param CacheItemPoolInterface $cache */ public function __construct( array $cacheConfig = null, CacheItemPoolInterface $cache = null ) { $this->cache = $cache; $this->cacheConfig = array_merge([ 'lifetime' => 1500, 'prefix' => '', ], (array) $cacheConfig); } /** * Caches the result of onGce so the metadata server is not called multiple * times. * * @param callable $httpHandler callback which delivers psr7 request * @return bool True if this a GCEInstance, false otherwise */ public function onGce(callable $httpHandler = null) { if (is_null($this->cache)) { return GCECredentials::onGce($httpHandler); } $cacheKey = self::GCE_CACHE_KEY; $onGce = $this->getCachedValue($cacheKey); if (is_null($onGce)) { $onGce = GCECredentials::onGce($httpHandler); $this->setCachedValue($cacheKey, $onGce); } return $onGce; } }