Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
10 | class ComputopToGuzzleHttpClientAdapter implements ComputopToGuzzleHttpClientInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var \GuzzleHttp\ClientInterface |
||
14 | */ |
||
15 | protected $guzzleHttpClient; |
||
16 | |||
17 | /** |
||
18 | * @param \GuzzleHttp\ClientInterface $guzzleHttpClient |
||
19 | */ |
||
20 | public function __construct(ClientInterface $guzzleHttpClient) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string $method |
||
27 | * @param string $uri |
||
28 | * @param array $options |
||
29 | * |
||
30 | * @return ResponseInterface |
||
31 | */ |
||
32 | public function request(string $method, string $uri, array $options = []): ResponseInterface |
||
45 |