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