Cache
5 days ago
CredentialSource
5 days ago
Credentials
5 days ago
HttpHandler
5 days ago
Middleware
5 days ago
AccessToken.php
5 days ago
ApplicationDefaultCredentials.php
5 days ago
CacheTrait.php
5 days ago
CredentialsLoader.php
5 days ago
ExternalAccountCredentialSourceInterface.php
5 days ago
FetchAuthTokenCache.php
5 days ago
FetchAuthTokenInterface.php
5 days ago
GCECache.php
5 days ago
GetQuotaProjectInterface.php
5 days ago
GetUniverseDomainInterface.php
5 days ago
Iam.php
5 days ago
IamSignerTrait.php
5 days ago
OAuth2.php
5 days ago
ProjectIdProviderInterface.php
5 days ago
ServiceAccountSignerTrait.php
5 days ago
SignBlobInterface.php
5 days ago
UpdateMetadataInterface.php
5 days ago
UpdateMetadataTrait.php
5 days ago
FetchAuthTokenInterface.php
53 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * Copyright 2015 Google Inc. |
| 5 | * |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | */ |
| 18 | namespace WPMailSMTP\Vendor\Google\Auth; |
| 19 | |
| 20 | /** |
| 21 | * An interface implemented by objects that can fetch auth tokens. |
| 22 | */ |
| 23 | interface FetchAuthTokenInterface |
| 24 | { |
| 25 | /** |
| 26 | * Fetches the auth tokens based on the current state. |
| 27 | * |
| 28 | * @param callable $httpHandler callback which delivers psr7 request |
| 29 | * @return array<mixed> a hash of auth tokens |
| 30 | */ |
| 31 | public function fetchAuthToken(?callable $httpHandler = null); |
| 32 | /** |
| 33 | * Obtains a key that can used to cache the results of #fetchAuthToken. |
| 34 | * |
| 35 | * If the value is empty, the auth token is not cached. |
| 36 | * |
| 37 | * @return string a key that may be used to cache the auth token. |
| 38 | */ |
| 39 | public function getCacheKey(); |
| 40 | /** |
| 41 | * Returns an associative array with the token and |
| 42 | * expiration time. |
| 43 | * |
| 44 | * @return null|array<mixed> { |
| 45 | * The last received access token. |
| 46 | * |
| 47 | * @type string $access_token The access token string. |
| 48 | * @type int $expires_at The time the token expires as a UNIX timestamp. |
| 49 | * } |
| 50 | */ |
| 51 | public function getLastReceivedToken(); |
| 52 | } |
| 53 |