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