/var/www/vhosts/ihelp.ro/httpdocs/vendor/google/auth/src/Credentials
NameSizeModeActions
AppIdentityCredentials.php70260644editdlrm
GCECredentials.php161860644editdlrm
IAMCredentials.php25030644editdlrm
ImpersonatedServiceAccountCredentials.php43620644editdlrm
InsecureCredentials.php18390644editdlrm
ServiceAccountCredentials.php107060644editdlrm
ServiceAccountJwtAccessCredentials.php61800644editdlrm
UserRefreshCredentials.php44790644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/google/auth/src/Credentials/InsecureCredentials.php (1839B)
'' ]; /** * Fetches the auth token. In this case it returns an empty string. * * @param callable $httpHandler * @return array{access_token:string} A set of auth related metadata */ public function fetchAuthToken(callable $httpHandler = null) { return $this->token; } /** * Returns the cache key. In this case it returns a null value, disabling * caching. * * @return string|null */ public function getCacheKey() { return null; } /** * Fetches the last received token. In this case, it returns the same empty string * auth token. * * @return array{access_token:string} */ public function getLastReceivedToken() { return $this->token; } }