@@ -348,7 +348,8 @@ |
||
348 | 348 | /** |
349 | 349 | * Parse http headers received along with xmlrpc request. If needed, inflate request. |
350 | 350 | * |
351 | - * @return mixed Response|null on success or an error Response |
|
351 | + * @param string $data |
|
352 | + * @return Response|null Response|null on success or an error Response |
|
352 | 353 | */ |
353 | 354 | protected function parseRequestHeaders(&$data, &$reqEncoding, &$respEncoding, &$respCompression) |
354 | 355 | { |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | * @todo validate params? In theory all validation is left to the dispatch map... |
393 | 393 | * @todo add support for $catchWarnings |
394 | 394 | * |
395 | - * @param $callable |
|
395 | + * @param callable $callable |
|
396 | 396 | * @param array $extraOptions |
397 | 397 | * @param string $plainFuncName |
398 | 398 | * @param string $funcDesc |
@@ -454,7 +454,7 @@ discard block |
||
454 | 454 | |
455 | 455 | /** |
456 | 456 | * Return a name for a new function, based on $callable, insuring its uniqueness |
457 | - * @param mixed $callable a php callable, or the name of an xmlrpc method |
|
457 | + * @param callable $callable a php callable, or the name of an xmlrpc method |
|
458 | 458 | * @param string $newFuncName when not empty, it is used instead of the calculated version |
459 | 459 | * @return string |
460 | 460 | */ |
@@ -492,7 +492,7 @@ discard block |
||
492 | 492 | } |
493 | 493 | |
494 | 494 | /** |
495 | - * @param $callable |
|
495 | + * @param callable $callable |
|
496 | 496 | * @param string $newFuncName |
497 | 497 | * @param array $extraOptions |
498 | 498 | * @param string $plainFuncName |
@@ -33,6 +33,9 @@ |
||
33 | 33 | } |
34 | 34 | } |
35 | 35 | |
36 | + /** |
|
37 | + * @param string $methodName |
|
38 | + */ |
|
36 | 39 | protected function newMsg($methodName, $params = array()) |
37 | 40 | { |
38 | 41 | $msg = new xmlrpcmsg($methodName, $params); |
@@ -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'); |
@@ -201,7 +201,6 @@ |
||
201 | 201 | * This option can be very useful when debugging servers as it allows you to see exactly what the client sends and |
202 | 202 | * the server returns. |
203 | 203 | * |
204 | - * @param integer $in values 0, 1 and 2 are supported (2 = echo sent msg too, before received response) |
|
205 | 204 | */ |
206 | 205 | public function setDebug($level) |
207 | 206 | { |
@@ -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. |