/home/techb158/immovalet.com/vendor/google/auth/src/Credentials
NameSizeModeActions
AppIdentityCredentials.php68450644editdlrm
GCECredentials.php164750644editdlrm
IAMCredentials.php24910644editdlrm
InsecureCredentials.php18480644editdlrm
ServiceAccountCredentials.php103620644editdlrm
ServiceAccountJwtAccessCredentials.php61660644editdlrm
UserRefreshCredentials.php41750644editdlrm
Edit: /home/techb158/immovalet.com/vendor/google/auth/src/Credentials/InsecureCredentials.php (1848B)
'' ]; /** * Fetches the auth token. In this case it returns an empty string. * * @param callable $httpHandler * @return array A set of auth related metadata, containing the following * keys: * - access_token (string) */ 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 */ public function getLastReceivedToken() { return $this->token; } }