Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
38 | 27 | private function getAdapterInfo() |
|
39 | { |
||
40 | 27 | if (defined('\GuzzleHttp\Client::MAJOR_VERSION')) { |
|
41 | 27 | $clientVersion = (string) constant(HttpClient::class . '::MAJOR_VERSION'); |
|
42 | } else { |
||
43 | $clientVersion = (string) constant(HttpClient::class . '::VERSION'); |
||
44 | } |
||
45 | 27 | return 'GuzzleHttp/' . $clientVersion; |
|
46 | } |
||
48 |