Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
10 | 4 | public static function build(string $endpoint, array $guzzleOptions = []): Client |
|
11 | { |
||
12 | 4 | $guzzleOptions = array_merge(['base_uri' => $endpoint], $guzzleOptions); |
|
13 | |||
14 | 4 | return new \Softonic\GraphQL\Client( |
|
15 | 4 | new \GuzzleHttp\Client($guzzleOptions), |
|
16 | 4 | new \Softonic\GraphQL\ResponseBuilder() |
|
17 | ); |
||
18 | } |
||
19 | |||
41 |