rkljw 1 månad sedan
förälder
incheckning
2a4b000032
2 ändrade filer med 13 tillägg och 13 borttagningar
  1. 8 8
      app/JsonRpc/PublicRpcService.php
  2. 5 5
      app/JsonRpc/PublicRpcServiceInterface.php

+ 8 - 8
app/JsonRpc/PublicRpcService.php

@@ -227,12 +227,12 @@ class PublicRpcService extends AbstractServiceClient implements PublicRpcService
         return $this->__request(__FUNCTION__, $data);
     }
 
-    /**
-     * @param array $data
-     * @return array|mixed
-     */
-    public function uploadFile(array $data)
-    {
-        return $this->__request(__FUNCTION__, $data);
-    }
+        /**
+         * @param array $data
+         * @return array|mixed
+         */
+        public function uploadFile(array $data)
+        {
+            return $this->__request(__FUNCTION__, $data);
+        }
 }

+ 5 - 5
app/JsonRpc/PublicRpcServiceInterface.php

@@ -136,9 +136,9 @@ interface PublicRpcServiceInterface
      */
     public function getBuckets(array $data);
 
-    /**
-     * @param array $data
-     * @return mixed
-     */
-    public function uploadFile(array $data);
+        /**
+         * @param array $data
+         * @return mixed
+         */
+        public function uploadFile(array $data);
 }