Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function __construct(Application $authorization) |
||
17 | { |
||
18 | parent::__construct( |
||
19 | [ |
||
20 | 'base_uri' => 'https://cloud.estimote.com/', |
||
21 | 'auth' => [$authorization->id(), $authorization->token()], |
||
22 | 'headers' => [ |
||
23 | 'Accept' => 'application/json', |
||
24 | 'User-Agent' => 'Speicher210/Estimote ' . default_user_agent() |
||
25 | ] |
||
26 | ] |
||
27 | ); |
||
28 | } |
||
29 | } |
||
30 |