Completed
Push — master ( c4596e...19d9e6 )
by Gaetano
03:28
created
tests/3LocalhostTest.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     /**
116 116
      * @param PhpXmlRpc\Request|array $msg
117
-     * @param int|array $errorCode
117
+     * @param integer $errorCode
118 118
      * @param bool $returnResponse
119 119
      * @return mixed|\PhpXmlRpc\Response|\PhpXmlRpc\Response[]|\PhpXmlRpc\Value|string|null
120 120
      */
@@ -431,6 +431,10 @@  discard block
 block discarded – undo
431 431
         }
432 432
     }
433 433
 
434
+    /**
435
+     * @param string $method
436
+     * @param PhpXmlRpc\Value[] $params
437
+     */
434 438
     public function _multicall_msg($method, $params)
435 439
     {
436 440
         $struct['methodName'] = new xmlrpcval($method, 'string');
Please login to merge, or discard this patch.
tests/4LocalhostMultiTest.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -180,8 +180,7 @@  discard block
 block discarded – undo
180 180
         {
181 181
             $this->markTestSkipped('CURL missing: cannot test http 1.1 w. proxy');
182 182
             return;
183
-        }
184
-        else if ($this->args['PROXYSERVER'] == '')
183
+        } else if ($this->args['PROXYSERVER'] == '')
185 184
         {
186 185
             $this->markTestSkipped('PROXY definition missing: cannot test proxy w. http 1.1');
187 186
             return;
@@ -228,8 +227,7 @@  discard block
 block discarded – undo
228 227
         {
229 228
             $this->markTestSkipped('CURL missing: cannot test https functionality');
230 229
             return;
231
-        }
232
-        else if ($this->args['PROXYSERVER'] == '')
230
+        } else if ($this->args['PROXYSERVER'] == '')
233 231
         {
234 232
             $this->markTestSkipped('PROXY definition missing: cannot test proxy w. http 1.1');
235 233
             return;
Please login to merge, or discard this patch.