1 | <?php |
||
10 | class DownloadFileResult extends Result { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $data; |
||
15 | |||
16 | /** |
||
17 | * @param string $data |
||
18 | */ |
||
19 | protected function processResponse($data) { |
||
22 | |||
23 | /** |
||
24 | * the generated blob id |
||
25 | * |
||
26 | * @return string |
||
27 | */ |
||
28 | public function getData() { |
||
31 | |||
32 | /** |
||
33 | * @param int $httpCode |
||
34 | * @return string |
||
35 | */ |
||
36 | protected function getErrorMessageByErrorCode($httpCode) { |
||
48 | } |
||
49 | |||
50 |