Test Failed
Branch master (d1f9e0)
by Lawrence
10:15 queued 02:18
created
src/module/Core.php 2 patches
Doc Comments   +4 added lines, -7 removed lines patch added patch discarded remove patch
@@ -81,7 +81,6 @@  discard block
 block discarded – undo
81 81
      * setConfigRequestMethod
82 82
      * 设置请求方法.
83 83
      *
84
-     * @param string $method
85 84
      */
86 85
     public function setConfigContentType($contentType)
87 86
     {
@@ -94,7 +93,6 @@  discard block
 block discarded – undo
94 93
      * setConfigSecretKey
95 94
      * 设置secretKey.
96 95
      *
97
-     * @param string $secretKey
98 96
      */
99 97
     public function setConfigRequestMethod($requestMethod)
100 98
     {
@@ -150,7 +148,7 @@  discard block
 block discarded – undo
150 148
      *
151 149
      * @param array  $paramArray    请求参数
152 150
      * @param string $secretKey     订阅密钥
153
-     * @param string $ContentType   请求Body的类型
151
+     * @param string $contentType   请求Body的类型
154 152
      * @param string $requestMethod 请求方式,GET/POST
155 153
      * @param string $url           接口URL
156 154
      * @param string $body          请求Body
@@ -225,10 +223,9 @@  discard block
 block discarded – undo
225 223
      *
226 224
      * @param array  $paramArray    请求参数
227 225
      * @param string $secretKey     订阅密钥
228
-     * @param string $ContentType   请求Body的类型
226
+     * @param string $contentType   请求Body的类型
229 227
      * @param string $requestMethod 请求方式,GET/POST
230
-     * @param string $url           接口URL
231
-     * @param string $body          请求Body
228
+     * @param string $requestHost
232 229
      *
233 230
      * @return
234 231
      */
@@ -259,7 +256,7 @@  discard block
 block discarded – undo
259 256
      * _dealResponse
260 257
      * 处理返回.
261 258
      *
262
-     * @param array $response
259
+     * @param Request $response
263 260
      *
264 261
      * @return
265 262
      */
Please login to merge, or discard this patch.
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -22,20 +22,20 @@
 block discarded – undo
22 22
      */
23 23
     protected $secretKey = '';
24 24
 
25
-     /**
26
-     * $contentType
27
-     * 接口域名.
28
-     *
29
-     * @var string
30
-     */
25
+        /**
26
+         * $contentType
27
+         * 接口域名.
28
+         *
29
+         * @var string
30
+         */
31 31
     protected $contentType = '';   
32 32
 
33
-     /**
34
-     * $requestMethod
35
-     * 接口域名.
36
-     *
37
-     * @var string
38
-     */
33
+        /**
34
+         * $requestMethod
35
+         * 接口域名.
36
+         *
37
+         * @var string
38
+         */
39 39
     protected $requestMethod = '';       
40 40
     
41 41
     /**
Please login to merge, or discard this patch.