@@ -114,7 +114,7 @@ discard block |
||
| 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|void |
| 120 | 120 | */ |
@@ -419,6 +419,9 @@ discard block |
||
| 419 | 419 | } |
| 420 | 420 | } |
| 421 | 421 | |
| 422 | + /** |
|
| 423 | + * @param string $method |
|
| 424 | + */ |
|
| 422 | 425 | public function _multicall_msg($method, $params) |
| 423 | 426 | { |
| 424 | 427 | $struct['methodName'] = new xmlrpcval($method, 'string'); |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | * |
| 45 | 45 | * When no value or type is passed in, the value is left uninitialized, and the value can be added later. |
| 46 | 46 | * |
| 47 | - * @param mixed $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves |
|
| 47 | + * @param integer $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves |
|
| 48 | 48 | * @param string $type any valid xmlrpc type name (lowercase): i4, int, boolean, string, double, dateTime.iso8601, |
| 49 | 49 | * base64, array, struct, null. |
| 50 | 50 | * If null, 'string' is assumed. |