Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class DownloadHandler extends APIHandler implements DownloadInterface { |
||
8 | |||
9 | private $download = '/download'; |
||
10 | private $api = '/api'; |
||
11 | private $v1 = '/v1'; |
||
|
|||
12 | private $v2 = '/v2'; |
||
13 | |||
14 | protected $headers = [ |
||
15 | 'content-type' => 'application/json' |
||
16 | ]; |
||
17 | |||
18 | /** |
||
19 | * Learning Locker: Request Organisation Details |
||
20 | * |
||
21 | * @return $response |
||
22 | */ |
||
23 | public function get() { |
||
34 |