Completed
Push — master ( f62d1a...5fc0c8 )
by Gaetano
9s
created
lib/xmlrpc_wrappers.inc 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
  * @see PhpXmlRpc\Wrapper::wrapXmlrpcMethod
88 88
  * @param xmlrpc_client $client
89 89
  * @param string $methodName
90
- * @param int|array $extraOptions the usage of an int as signature number is deprecated, use an option in $extraOptions
90
+ * @param integer $extraOptions the usage of an int as signature number is deprecated, use an option in $extraOptions
91 91
  * @param int $timeout            deprecated, use an option in $extraOptions
92 92
  * @param string $protocol        deprecated, use an option in $extraOptions
93 93
  * @param string $newFuncName     deprecated, use an option in $extraOptions
@@ -217,6 +217,7 @@  discard block
 block discarded – undo
217 217
 
218 218
 /**
219 219
  * @deprecated
220
+ * @param integer $verbatim_client_copy
220 221
  */
221 222
 function build_client_wrapper_code($client, $verbatim_client_copy, $prefix='xmlrpc')
222 223
 {
Please login to merge, or discard this patch.
src/Value.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * When no value or type is passed in, the value is left uninitialized, and the value can be added later.
48 48
      *
49
-     * @param mixed $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves
49
+     * @param integer $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves
50 50
      * @param string $type any valid xmlrpc type name (lowercase): i4, int, boolean, string, double, dateTime.iso8601,
51 51
      *                     base64, array, struct, null.
52 52
      *                     If null, 'string' is assumed.
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      * If the xmlrpc value is empty (uninitialized), this method makes it a scalar value, and sets that value.
96 96
      * Fails if the xmlrpc value is not an array and already initialized.
97 97
      *
98
-     * @param mixed $val
98
+     * @param string $val
99 99
      * @param string $type allowed values: i4, i8, int, boolean, string, double, dateTime.iso8601, base64, null.
100 100
      *
101 101
      * @return int 1 or 0 on failure
Please login to merge, or discard this patch.