Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function __construct(ClientInterface $client, string $token, string $domain) |
||
32 | { |
||
33 | $this->client = $client; |
||
34 | $this->defaults = [ |
||
35 | 'allow_redirects' => false, |
||
36 | 'base_uri' => $domain, |
||
37 | 'headers' => [ |
||
38 | 'Content-Type' => 'application/json', |
||
39 | 'Accept' => 'application/json', |
||
40 | ], |
||
41 | 'query' => [ |
||
42 | 'key' => $token, |
||
43 | ], |
||
60 |