El RIDO 5 лет назад
Родитель
Сommit
d0248d55d3
2 измененных файлов с 4 добавлено и 4 удалено
  1. 1 1
      lib/Data/GoogleCloudStorage.php
  2. 3 3
      lib/Json.php

+ 1 - 1
lib/Data/GoogleCloudStorage.php

@@ -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 '';
         }

+ 3 - 3
lib/Json.php

@@ -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;
     }
 
     /**