Completed
Pull Request — master (#267)
by
unknown
17:05
created
rtc/src/QiniuRtc/AppClient.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -198,6 +198,10 @@  discard block
 block discarded – undo
198 198
         return $this->_mac->_accessKey . ":" . $encodedSign . ":" . $encodedappAccess;
199 199
     }
200 200
 
201
+    /**
202
+     * @param string $method
203
+     * @param string $url
204
+     */
201 205
     private function get($method, $url)
202 206
     {
203 207
         if ($method != "GET") {
@@ -217,6 +221,10 @@  discard block
 block discarded – undo
217 221
         return array($ret->json(), null);
218 222
     }
219 223
 
224
+    /**
225
+     * @param string $method
226
+     * @param string $url
227
+     */
220 228
     private function delete($method, $url)
221 229
     {
222 230
         if ($method != "GET") {
@@ -236,6 +244,11 @@  discard block
 block discarded – undo
236 244
         return array($ret->json(), null);
237 245
     }
238 246
 
247
+    /**
248
+     * @param string $method
249
+     * @param string $url
250
+     * @param string $body
251
+     */
239 252
     private function post($method, $url, $body)
240 253
     {
241 254
         if ($method != "GET") {
Please login to merge, or discard this patch.