commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
AuthConfig.php
1 <?php
2 
3 declare(strict_types=1);
10 namespace Commercetools\Client;
11 
12 interface AuthConfig
13 {
14  public const OPT_BASE_URI = 'base_uri';
15 
16  public function getGrantType(): string;
17 
18  public function getAuthUri(): string;
19 
20  public function getOptions(): array;
21 }