for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Threema GmbH
* @copyright Copyright (c) 2015-2016 Threema GmbH
*/
namespace Threema\MsgApi\Commands\Results;
class DownloadFileResult extends Result {
* @var string
private $data;
* @param string $data
protected function processResponse($data) {
$this->data = $data;
}
* the generated blob id
*
* @return string
public function getData() {
return $this->data;
* @param int $httpCode
protected function getErrorMessageByErrorCode($httpCode) {
switch($httpCode) {
case 401:
return 'API identity or secret incorrect';
case 404:
return 'Invalid blob id';
case 500:
return 'A temporary internal server error has occurred';
default:
return 'Unknown error';