| Total Complexity | 5 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | class DownloadStatus |
||
| 17 | { |
||
| 18 | const SUCCESSFUL = 0; |
||
| 19 | const JSON_DOWNLOAD_FAILED = 1; |
||
| 20 | const IMAGE_DOWNLOAD_FAILED = 2; |
||
| 21 | |||
| 22 | const UNKNOWN_ERROR = 1000; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * convert the api to a string |
||
| 26 | * |
||
| 27 | * @param $apiError |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | 3 | public static function toString($apiError) |
|
| 47 |