Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Apr 28, 2020. It is now read-only.

Commit92de587

Browse files
committed
Merge pull request#14 from froschdesign/hotfix/docs/8
[Docs] - Fixes bullet lists - See#8
2 parentsb3f053b +72f1f6d commit92de587

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

‎doc/book/zend.xmlrpc.client.md‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ $result = $client-call('foo.bar', array(array()));
8989
Parameters may also be created as`Zend\XmlRpc\Value` instances to specify an exact*XML-RPC* type.
9090
The 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
9393
procedure 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*
9595
native 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.
9797
Empty structs are represented as empty arrays in*PHP* but, if you give an empty array as a
9898
parameter 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

231231
The 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
235235
request 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
237237
successively 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

‎doc/book/zend.xmlrpc.server.md‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ to guess the appropriate type based on the values listed in @param and @return l
7171
types have no immediate*PHP* equivalent, however, and should be hinted using the*XML-RPC* type in
7272
the PHPDoc. These include:
7373

74-
-**dateTime.iso8601**, a string formatted as '`YYYYMMDDTHH:mm:ss`'
75-
-**base64**, base64 encoded data
76-
-**struct**, any associative array
74+
***dateTime.iso8601**, a string formatted as '`YYYYMMDDTHH:mm:ss`'
75+
***base64**, base64 encoded data
76+
***struct**, any associative array
7777

7878
An example of how to hint follows:
7979

@@ -125,9 +125,9 @@ dot-delimited namespaces. This helps prevent naming collisions between methods s
125125
classes. As an example, the*XML-RPC* server is expected to server several methods in the 'system'
126126
namespace:
127127

128-
- system.listMethods
129-
- system.methodHelp
130-
- system.methodSignature
128+
* system.listMethods
129+
* system.methodHelp
130+
* system.methodSignature
131131

132132
Internally, these map to the methods of the same name in`Zend\XmlRpc\Server`.
133133

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp