Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
22 | 34 | public function __construct(ClientInterface $client, string $token) |
|
23 | { |
||
24 | 34 | $this->client = $client; |
|
25 | 34 | $this->defaults = [ |
|
26 | 34 | 'allow_redirects' => false, |
|
27 | 34 | 'base_uri' => 'https://api.shorte.st', |
|
28 | 'headers' => [ |
||
29 | 34 | 'Accept' => 'application/json', |
|
30 | 34 | 'Public-API-Token' => $token, |
|
31 | 34 | 'Content-Type' => 'application/x-www-form-urlencoded', |
|
32 | ], |
||
49 |