| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2.0625 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 1 | public function createClient(array $config = []): HttpClient |
|
| 28 | { |
||
| 29 | 1 | if (! class_exists(FileGetContents::class)) { |
|
| 30 | throw new \LogicException('To use the Buzz adapter you need to install the "kriswallsmith/buzz: ^1.0" package.'); |
||
| 31 | } |
||
| 32 | |||
| 33 | 1 | return new FileGetContents($this->responseFactory, $config); |
|
| 34 | } |
||
| 36 |