reference/soap/soapclient/dorequest.xml
e4831ebb56bd2a2392dbe8958ca90d7917c19c00
...
...
@@ -1,6 +1,5 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-

4
3
<refentry xml:id="soapclient.dorequest" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
5
4
<refnamediv>
6
5
<refname>SoapClient::__doRequest</refname>
...
...
@@ -9,13 +8,13 @@
9
8

10
9
<refsect1 role="description">
11
10
&reftitle.description;
12
-
<methodsynopsis>
13
-
<modifier>public</modifier> <type>string</type><methodname>SoapClient::__doRequest</methodname>
11
+
<methodsynopsis role="SoapClient">
12
+
<modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapClient::__doRequest</methodname>
14
13
<methodparam><type>string</type><parameter>request</parameter></methodparam>
15
14
<methodparam><type>string</type><parameter>location</parameter></methodparam>
16
15
<methodparam><type>string</type><parameter>action</parameter></methodparam>
17
16
<methodparam><type>int</type><parameter>version</parameter></methodparam>
18
-
<methodparam choice="opt"><type>int</type><parameter>one_way</parameter><initializer>0</initializer></methodparam>
17
+
<methodparam choice="opt"><type>bool</type><parameter>oneWay</parameter><initializer>&false;</initializer></methodparam>
19
18
</methodsynopsis>
20
19
<para>
21
20
Performs SOAP request over HTTP.
...
...
@@ -63,10 +62,10 @@
63
62
</listitem>
64
63
</varlistentry>
65
64
<varlistentry>
66
-
<term><parameter>one_way</parameter></term>
65
+
<term><parameter>oneWay</parameter></term>
67
66
<listitem>
68
67
<para>
69
-
If <literal>one_way</literal> is set to 1, this method returns nothing.
68
+
If <parameter>oneWay</parameter> is set to &true;, this method returns nothing.
70
69
Use this where a response is not expected.
71
70
</para>
72
71
</listitem>
...
...
@@ -84,29 +83,26 @@
84
83

85
84
<refsect1 role="changelog">
86
85
&reftitle.changelog;
87
-
<para>
88
-
<informaltable>
89
-
<tgroup cols="2">
90
-
<thead>
91
-
<row>
92
-
<entry>&Version;</entry>
93
-
<entry>&Description;</entry>
94
-
</row>
95
-
</thead>
96
-
<tbody>
97
-
<row>
98
-
<entry>5.1.3</entry>
99
-
<entry>
100
-
The <parameter>one_way</parameter> parameter was added.
101
-
</entry>
102
-
</row>
103
-
</tbody>
104
-
</tgroup>
105
-
</informaltable>
106
-
</para>
86
+
<informaltable>
87
+
<tgroup cols="2">
88
+
<thead>
89
+
<row>
90
+
<entry>&Version;</entry>
91
+
<entry>&Description;</entry>
92
+
</row>
93
+
</thead>
94
+
<tbody>
95
+
<row>
96
+
<entry>8.0.0</entry>
97
+
<entry>
98
+
The type of <parameter>oneWay</parameter> is &boolean; now; formerly it was &integer;.
99
+
</entry>
100
+
</row>
101
+
</tbody>
102
+
</tgroup>
103
+
</informaltable>
107
104
</refsect1>
108
105

109
-

110
106
<refsect1 role="examples">
111
107
&reftitle.examples;
112
108
<para>
...
...
@@ -147,7 +143,6 @@ var_dump($x->Add(3,4));
147
143
</para>
148
144
</refsect1>
149
145
</refentry>
150
-

151
146
<!-- Keep this comment at the end of the file
152
147
Local variables:
153
148
mode: sgml
154
149