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 |
||
31 | 1 | public function createClient(array $config = []): HttpClient |
|
32 | { |
||
33 | 1 | if (! class_exists('Http\Adapter\React\Client')) { |
|
34 | throw new LogicException('To use the React adapter you need to install the "php-http/react-adapter" package.'); |
||
35 | } |
||
36 | |||
37 | 1 | return new Client($this->messageFactory); |
|
38 | } |
||
40 |