/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/IAMCredentials.php (2491B)
selector = $selector; $this->token = $token; } /** * export a callback function which updates runtime metadata. * * @return array updateMetadata function */ public function getUpdateMetadataFunc() { return array($this, 'updateMetadata'); } /** * Updates metadata with the appropriate header metadata. * * @param array $metadata metadata hashmap * @param string $unusedAuthUri optional auth uri * @param callable $httpHandler callback which delivers psr7 request * Note: this param is unused here, only included here for * consistency with other credentials class * * @return array updated metadata hashmap */ public function updateMetadata( $metadata, $unusedAuthUri = null, callable $httpHandler = null ) { $metadata_copy = $metadata; $metadata_copy[self::SELECTOR_KEY] = $this->selector; $metadata_copy[self::TOKEN_KEY] = $this->token; return $metadata_copy; } }