Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 0 |
1 | <?php |
||
33 | 1 | public function createClient(array $config = []) |
|
34 | { |
||
35 | 1 | if (!class_exists(Client::class)) { |
|
36 | throw new \LogicException('To use the mock adapter you need to install the "php-http/mock-client" package.'); |
||
37 | } |
||
38 | |||
39 | 1 | if (!$this->client) { |
|
40 | 1 | $this->client = new Client(); |
|
41 | } |
||
42 | |||
43 | 1 | return $this->client; |
|
44 | } |
||
45 | } |
||
46 |