mirror of
https://github.com/php/doc-en.git
synced 2026-03-23 23:32:18 +01:00
Fix parameter name mismatches between signature and description (#5185)
This commit is contained in:
@@ -20,8 +20,8 @@
|
||||
</constructorsynopsis>
|
||||
<para>
|
||||
This class is used to send SOAP fault responses from the PHP handler.
|
||||
<parameter>faultcode</parameter>, <parameter>faultstring</parameter>,
|
||||
<parameter>faultactor</parameter> and <parameter>detail</parameter> are
|
||||
<parameter>code</parameter>, <parameter>string</parameter>,
|
||||
<parameter>actor</parameter> and <parameter>details</parameter> are
|
||||
standard elements of a SOAP Fault.
|
||||
</para>
|
||||
</refsect1>
|
||||
@@ -31,7 +31,7 @@
|
||||
<para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>faultcode</parameter></term>
|
||||
<term><parameter>code</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The error code of the <classname>SoapFault</classname>.
|
||||
@@ -39,7 +39,7 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>faultstring</parameter></term>
|
||||
<term><parameter>string</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
The error message of the <classname>SoapFault</classname>.
|
||||
@@ -47,7 +47,7 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>faultactor</parameter></term>
|
||||
<term><parameter>actor</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
A string identifying the actor that caused the error.
|
||||
@@ -55,7 +55,7 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>detail</parameter></term>
|
||||
<term><parameter>details</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
More details about the cause of the error.
|
||||
@@ -63,7 +63,7 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>faultname</parameter></term>
|
||||
<term><parameter>name</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Can be used to select the proper fault encoding from WSDL.
|
||||
@@ -71,7 +71,7 @@
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>headerfault</parameter></term>
|
||||
<term><parameter>headerFault</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Can be used during SOAP header handling to report an error in the
|
||||
|
||||
Reference in New Issue
Block a user