Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | class EasycreditToHttpClientAdapter implements EasycreditToHttpClientInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \GuzzleHttp\ClientInterface |
||
16 | */ |
||
17 | protected $client; |
||
18 | |||
19 | public function __construct() |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @param string $method |
||
26 | * @param string $uri |
||
27 | * @param array<string, mixed> $options |
||
28 | * |
||
29 | * @return \SprykerEco\Zed\Easycredit\Dependency\External\EasycreditToHttpResponseInterface |
||
30 | */ |
||
31 | public function request(string $method, string $uri, array $options = []): EasycreditToHttpResponseInterface |
||
38 |