Selaa lähdekoodia

public + modZhinengbumen

15313670163 4 kuukautta sitten
vanhempi
sitoutus
22ff0addc0
2 muutettua tiedostoa jossa 14 lisäystä ja 0 poistoa
  1. 8 0
      app/JsonRpc/PublicRpcService.php
  2. 6 0
      app/JsonRpc/PublicRpcServiceInterface.php

+ 8 - 0
app/JsonRpc/PublicRpcService.php

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

+ 6 - 0
app/JsonRpc/PublicRpcServiceInterface.php

@@ -126,4 +126,10 @@ interface PublicRpcServiceInterface
      */
     public function delZhinengbumen(array $data);
 
+     /**
+     * @param array $data
+     * @return mixed
+     */
+    public function modZhinengbumen(array $data);
+
 }