| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.0625 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 5 | public function createClient(array $config = []) |
|
| 18 | { |
||
| 19 | 5 | if (!class_exists('Http\Adapter\Guzzle6\Client')) { |
|
| 20 | throw new \LogicException('To use the Guzzle6 adapter you need to install the "php-http/guzzle6-adapter" package.'); |
||
| 21 | } |
||
| 22 | |||
| 23 | 5 | return Client::createWithConfig($config); |
|
| 24 | } |
||
| 25 | } |
||
| 26 |