@@ -89,11 +89,11 @@ $result = $client-call('foo.bar', array(array()));
8989Parameters may also be created as` Zend\XmlRpc\Value ` instances to specify an exact* XML-RPC* type.
9090The primary reasons for doing this are:
9191
92- > - When you want to make sure the correct parameter type is passed to the procedure (i.e. the
92+ * When you want to make sure the correct parameter type is passed to the procedure (i.e. the
9393procedure requires an integer and you may get it from a database as a string)
94- - When the procedure requires` base64 ` or` dateTime.iso8601 ` type (which doesn't exists as a* PHP*
94+ * When the procedure requires` base64 ` or` dateTime.iso8601 ` type (which doesn't exists as a* PHP*
9595native type)
96- - When auto-conversion may fail (i.e. you want to pass an empty* XML-RPC* struct as a parameter.
96+ * When auto-conversion may fail (i.e. you want to pass an empty* XML-RPC* struct as a parameter.
9797Empty structs are represented as empty arrays in* PHP* but, if you give an empty array as a
9898parameter it will be auto-converted to an* XML-RPC* array since it's not an associative array)
9999
@@ -230,13 +230,13 @@ foreach ($introspector->listMethods() as $method) {
230230
231231The following methods are available for introspection:
232232
233- - ` getSignatureForEachMethod ` : Returns the signature for each method on the server
234- - ` getSignatureForEachMethodByMulticall($methods=null) ` : Attempt to get the method signatures in one
233+ * ` getSignatureForEachMethod ` : Returns the signature for each method on the server
234+ * ` getSignatureForEachMethodByMulticall($methods=null) ` : Attempt to get the method signatures in one
235235request via system.multicall(). Optionally pass an array of method names.
236- - ` getSignatureForEachMethodByLooping($methods=null) ` : Get the method signatures for every method by
236+ * ` getSignatureForEachMethodByLooping($methods=null) ` : Get the method signatures for every method by
237237successively calling system.methodSignature. Optionally pass an array of method names
238- - ` getMethodSignature($method) ` : Get the method's signature for $method
239- - ` listMethods ` : List all methods on the server
238+ * ` getMethodSignature($method) ` : Get the method's signature for $method
239+ * ` listMethods ` : List all methods on the server
240240
241241##From Request to Response
242242