/home/desid573/public_html/tollster/vendor/google/auth/src/Credentials
NameSizeModeActions
AppIdentityCredentials.php48400644editdlrm
GCECredentials.php65500644editdlrm
IAMCredentials.php24650644editdlrm
ServiceAccountCredentials.php55850644editdlrm
ServiceAccountJwtAccessCredentials.php38470644editdlrm
UserRefreshCredentials.php33960644editdlrm
Edit: /home/desid573/public_html/tollster/vendor/google/auth/src/Credentials/IAMCredentials.php (2465B)
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; } }