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
GetUniverseDomainInterface.php
35 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * Copyright 2023 Google LLC |
| 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 get universe domain for Google Cloud APIs. |
| 22 | */ |
| 23 | interface GetUniverseDomainInterface |
| 24 | { |
| 25 | const DEFAULT_UNIVERSE_DOMAIN = 'googleapis.com'; |
| 26 | /** |
| 27 | * Get the universe domain from the credential. This should always return |
| 28 | * a string, and default to "googleapis.com" if no universe domain is |
| 29 | * configured. |
| 30 | * |
| 31 | * @return string |
| 32 | */ |
| 33 | public function getUniverseDomain() : string; |
| 34 | } |
| 35 |