Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
42 | public function download($uri, $destination) |
||
43 | { |
||
44 | // Setup the connection. |
||
45 | $this->setup(); |
||
46 | |||
47 | $this->client->get($uri, [ |
||
48 | 'headers' => [ |
||
49 | 'Content-Type' => null, |
||
50 | 'Authentication' => $this->accessToken->getToken(), |
||
51 | ], |
||
52 | 'save_to' => $destination, //TODO: Change to `sink` for Guzzle 6 |
||
53 | ]); |
||
54 | } |
||
55 | } |
||
56 |