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