address Scrutinizer issues
This commit is contained in:
parent
078c5785dd
commit
d0248d55d3
@ -291,7 +291,7 @@ class GoogleCloudStorage extends AbstractData
|
|||||||
try {
|
try {
|
||||||
$o = $this->_bucket->object($key);
|
$o = $this->_bucket->object($key);
|
||||||
$data = $o->downloadAsString();
|
$data = $o->downloadAsString();
|
||||||
return Json::decode($data);
|
return (string) Json::decode($data);
|
||||||
} catch (NotFoundException $e) {
|
} catch (NotFoundException $e) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
|
@ -44,13 +44,13 @@ class Json
|
|||||||
* @static
|
* @static
|
||||||
* @param string $input
|
* @param string $input
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
* @return array
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public static function decode($input)
|
public static function decode($input)
|
||||||
{
|
{
|
||||||
$array = json_decode($input, true);
|
$output = json_decode($input, true);
|
||||||
self::_detectError();
|
self::_detectError();
|
||||||
return $array;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user