address Scrutinizer issues

pull/813/head
El RIDO 2021-06-13 12:43:18 +02:00
parent 078c5785dd
commit d0248d55d3
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
2 changed files with 4 additions and 4 deletions

View File

@ -291,7 +291,7 @@ class GoogleCloudStorage extends AbstractData
try {
$o = $this->_bucket->object($key);
$data = $o->downloadAsString();
return Json::decode($data);
return (string) Json::decode($data);
} catch (NotFoundException $e) {
return '';
}

View File

@ -44,13 +44,13 @@ class Json
* @static
* @param string $input
* @throws Exception
* @return array
* @return mixed
*/
public static function decode($input)
{
$array = json_decode($input, true);
$output = json_decode($input, true);
self::_detectError();
return $array;
return $output;
}
/**