svn: /phpdoc/ja/trunk/reference/soap/ functions/use-soap-error-handler.xml soapclient/call.xml soapclient/construct.xml soapclient/dorequest.xml soapclient/getfunctions.xml soapclient/getlastrequest.xml soapclient/getlastrequestheaders.xml soapclient/getlastresponse.xml soapclient/getlastresponseheaders.xml soapclient/gettypes.xml soapclient/setcookie.xml soapclient/setlocation.xml soapclient/setsoapheaders.xml soapclient/soapcall.xml soapfault/construct.xml soapparam/construct.xml soapserver/ad

[email protected] (Yoshinari Takaoka) Sun, 27 Dec 2020 15:40:14 +0000
Newsgroups php.doc.ja
Message-ID <[email protected]>
mumumu                                   Sun, 27 Dec 2020 15:40:14 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=352203

Log:
Generate soap methodsynopses based on stubs

Closes GH-287.

Changed paths:
    U   phpdoc/ja/trunk/reference/soap/functions/use-soap-error-handler.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/call.xml
    A   phpdoc/ja/trunk/reference/soap/soapclient/construct.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/dorequest.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/getfunctions.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/getlastrequest.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/getlastrequestheaders.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/getlastresponse.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/getlastresponseheaders.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/gettypes.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/setcookie.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/setlocation.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/setsoapheaders.xml
    U   phpdoc/ja/trunk/reference/soap/soapclient/soapcall.xml
    U   phpdoc/ja/trunk/reference/soap/soapfault/construct.xml
    U   phpdoc/ja/trunk/reference/soap/soapparam/construct.xml
    U   phpdoc/ja/trunk/reference/soap/soapserver/addfunction.xml
    U   phpdoc/ja/trunk/reference/soap/soapserver/addsoapheader.xml
    U   phpdoc/ja/trunk/reference/soap/soapserver/construct.xml
    U   phpdoc/ja/trunk/reference/soap/soapserver/fault.xml
    U   phpdoc/ja/trunk/reference/soap/soapserver/handle.xml
    U   phpdoc/ja/trunk/reference/soap/soapserver/setclass.xml
    U   phpdoc/ja/trunk/reference/soap/soapvar/construct.xml
svn-diffs-352203.txt (text/x-diff, 40 KB)
Modified: phpdoc/ja/trunk/reference/soap/functions/use-soap-error-handler.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/functions/use-soap-error-handler.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/functions/use-soap-error-handler.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 343899 Maintainer: shimooka Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: shimooka Status: ready -->

 <refentry xml:id="function.use-soap-error-handler" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -12,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <type>bool</type><methodname>use_soap_error_handler</methodname>
-   <methodparam choice="opt"><type>bool</type><parameter>handler</parameter><initializer>&true;</initializer></methodparam>
+   <methodparam choice="opt"><type>bool</type><parameter>enable</parameter><initializer>&true;</initializer></methodparam>
   </methodsynopsis>
   <para>
    この関数は、SOAP サーバーで SOAP エラーハンドラを使用するかどうかを設定します。
@@ -30,7 +30,7 @@
   <para>
    <variablelist>
     <varlistentry>
-     <term><parameter>handler</parameter></term>
+     <term><parameter>enable</parameter></term>
      <listitem>
       <para>
        &true; に設定すると、エラーの詳細をクライアントに送信します。
@@ -59,7 +59,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/call.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/call.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/call.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 345071 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->

 <refentry xml:id="soapclient.call" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -12,8 +12,8 @@
   &reftitle.description;
   <methodsynopsis>
    <modifier>public</modifier> <type>mixed</type><methodname>SoapClient::__call</methodname>
-   <methodparam><type>string</type><parameter>function_name</parameter></methodparam>
-   <methodparam><type>array</type><parameter>arguments</parameter></methodparam>
+   <methodparam><type>string</type><parameter>name</parameter></methodparam>
+   <methodparam><type>array</type><parameter>args</parameter></methodparam>
   </methodsynopsis>
   <para>
    このメソッドを直接呼ぶのは推奨しません。
@@ -24,7 +24,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Added: phpdoc/ja/trunk/reference/soap/soapclient/construct.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/construct.xml	                        (rev 0)
+++ phpdoc/ja/trunk/reference/soap/soapclient/construct.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- $Revision$ -->
+<!-- EN-Revision: 352202 Maintainer: mumumu Status: ready -->
+
+<refentry xml:id="soapclient.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+ <refnamediv>
+  <refname>SoapClient::__construct</refname>
+  <refpurpose>SoapClient のコンストラクタ</refpurpose>
+ </refnamediv>
+
+ <refsect1 role="description">
+  &reftitle.description;
+  <constructorsynopsis>
+   <modifier>public</modifier> <methodname>SoapClient::__construct</methodname>
+   <methodparam><type class="union"><type>string</type><type>null</type></type><parameter>wsdl</parameter></methodparam>
+   <methodparam choice="opt"><type>array</type><parameter>options</parameter><initializer>[]</initializer></methodparam>
+  </constructorsynopsis>
+  <para>
+   &info.function.alias; <methodname>SoapClient::SoapClient</methodname>
+  </para>
+ </refsect1>
+
+</refentry>
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:"~/.phpdoc/manual.ced"
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+-->


Property changes on: phpdoc/ja/trunk/reference/soap/soapclient/construct.xml
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+Id Rev Revision Date LastChangedDate LastChangedRevision Author LastChangedBy HeadURL URL
\ No newline at end of property
Modified: phpdoc/ja/trunk/reference/soap/soapclient/dorequest.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/dorequest.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/dorequest.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 350653 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: shimooka,mumumu -->

 <refentry xml:id="soapclient.dorequest" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,12 +12,12 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>string</type><methodname>SoapClient::__doRequest</methodname>
+   <modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapClient::__doRequest</methodname>
    <methodparam><type>string</type><parameter>request</parameter></methodparam>
    <methodparam><type>string</type><parameter>location</parameter></methodparam>
    <methodparam><type>string</type><parameter>action</parameter></methodparam>
    <methodparam><type>int</type><parameter>version</parameter></methodparam>
-   <methodparam choice="opt"><type>int</type><parameter>one_way</parameter><initializer>0</initializer></methodparam>
+   <methodparam choice="opt"><type>bool</type><parameter>oneWay</parameter><initializer>&false;</initializer></methodparam>
   </methodsynopsis>
   <para>
    HTTP 上で SOAP リクエストを実行します。
@@ -65,7 +65,7 @@
      </listitem>
     </varlistentry>
     <varlistentry>
-     <term><parameter>one_way</parameter></term>
+     <term><parameter>oneWay</parameter></term>
      <listitem>
       <para>
        <literal>one_way</literal> に 1 を設定すると、このメソッドは何も返しません。
@@ -84,6 +84,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>8.0.0</entry>
+      <entry>
+       <parameter>oneWay</parameter> の型は &boolean; になりました。
+       これより前のバージョンでは、&integer; でした。
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="examples">
   &reftitle.examples;
   <para>
@@ -124,7 +147,6 @@
   </para>
  </refsect1>
 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/getfunctions.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/getfunctions.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/getfunctions.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 341254 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapclient.getfunctions" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,8 +12,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>array</type><methodname>SoapClient::__getFunctions</methodname>
-   <void />
+   <modifier>public</modifier> <type class="union"><type>array</type><type>null</type></type><methodname>SoapClient::__getFunctions</methodname>
+   <void/>
   </methodsynopsis>
   <para>
    ウェブサービスの WSDL に記述されている関数の配列を返します。
@@ -80,7 +80,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/getlastrequest.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/getlastrequest.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/getlastrequest.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 336715 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapclient.getlastrequest" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,8 +12,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>string</type><methodname>SoapClient::__getLastRequest</methodname>
-   <void />
+   <modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapClient::__getLastRequest</methodname>
+   <void/>
   </methodsynopsis>
   <para>
    直近の SOAP リクエストで送信された XML を返します。
@@ -68,7 +68,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/getlastrequestheaders.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/getlastrequestheaders.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/getlastrequestheaders.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 340334 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: shimooka -->

 <refentry xml:id="soapclient.getlastrequestheaders" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,8 +12,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>string</type><methodname>SoapClient::__getLastRequestHeaders</methodname>
-   <void />
+   <modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapClient::__getLastRequestHeaders</methodname>
+   <void/>
   </methodsynopsis>
   <para>
    直近の SOAP リクエストヘッダを返します。
@@ -68,7 +68,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/getlastresponse.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/getlastresponse.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/getlastresponse.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 322122 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapclient.getlastresponse" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,8 +12,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>string</type><methodname>SoapClient::__getLastResponse</methodname>
-   <void />
+   <modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapClient::__getLastResponse</methodname>
+   <void/>
   </methodsynopsis>
   <para>
    直近の SOAP レスポンスで受信した XML を返します。
@@ -68,7 +68,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/getlastresponseheaders.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/getlastresponseheaders.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/getlastresponseheaders.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 322122 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapclient.getlastresponseheaders" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,8 +12,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>string</type><methodname>SoapClient::__getLastResponseHeaders</methodname>
-   <void />
+   <modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapClient::__getLastResponseHeaders</methodname>
+   <void/>
   </methodsynopsis>
   <para>
    直近の SOAP レスポンスヘッダを返します。
@@ -68,7 +68,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/gettypes.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/gettypes.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/gettypes.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 300897 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapclient.gettypes" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -12,8 +12,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>array</type><methodname>SoapClient::__getTypes</methodname>
-   <void />
+   <modifier>public</modifier> <type class="union"><type>array</type><type>null</type></type><methodname>SoapClient::__getTypes</methodname>
+   <void/>
   </methodsynopsis>
   <para>
    ウェブサービスの WSDL で定義されている型の配列を返します。
@@ -97,7 +97,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/setcookie.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/setcookie.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/setcookie.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: takagi Status: ready -->
-<!-- CREDITS: shimooka -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
+<!-- CREDITS: shimooka,mumumu -->

 <refentry xml:id="soapclient.setcookie" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -14,7 +14,7 @@
   <methodsynopsis>
    <modifier>public</modifier> <type>void</type><methodname>SoapClient::__setCookie</methodname>
    <methodparam><type>string</type><parameter>name</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>value</parameter></methodparam>
+   <methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>value</parameter><initializer>&null;</initializer></methodparam>
   </methodsynopsis>
   <para>
    SOAP リクエストと共に送信されるクッキーを定義します。
@@ -58,8 +58,29 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>8.0.0</entry>
+      <entry>
+       <parameter>value</parameter> は、nullable になりました。
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/setlocation.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/setlocation.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/setlocation.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 296054 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->

 <refentry xml:id="soapclient.setlocation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -11,8 +11,8 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <modifier>public</modifier> <type>string</type><methodname>SoapClient::__setLocation</methodname>
-   <methodparam choice="opt"><type>string</type><parameter>new_location</parameter></methodparam>
+   <modifier>public</modifier> <type class="union"><type>string</type><type>null</type></type><methodname>SoapClient::__setLocation</methodname>
+   <methodparam choice="opt"><type>string</type><parameter>location</parameter><initializer>""</initializer></methodparam>
   </methodsynopsis>
   <para>
    それ以降の SOAP リクエストで使用するエンドポイント URL を設定します。
@@ -32,7 +32,7 @@
   <para>
    <variablelist>
     <varlistentry>
-     <term><parameter>new_location</parameter></term>
+     <term><parameter>location</parameter></term>
      <listitem>
       <para>
        新しいエンドポイント URL。
@@ -89,7 +89,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/setsoapheaders.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/setsoapheaders.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/setsoapheaders.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 296056 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->

 <refentry xml:id="soapclient.setsoapheaders" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -12,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <modifier>public</modifier> <type>bool</type><methodname>SoapClient::__setSoapHeaders</methodname>
-   <methodparam choice="opt"><type>mixed</type><parameter>soapheaders</parameter></methodparam>
+   <methodparam choice="opt"><type class="union"><type>SoapHeader</type><type>array</type><type>null</type></type><parameter>headers</parameter><initializer>&null;</initializer></methodparam>
   </methodsynopsis>
   <para>
    SOAP リクエストで送信するヘッダを定義します。
@@ -29,7 +29,7 @@
   <para>
    <variablelist>
     <varlistentry>
-     <term><parameter>soapheaders</parameter></term>
+     <term><parameter>headers</parameter></term>
      <listitem>
       <para>
        設定したいヘッダ。<classname>SoapHeader</classname>
@@ -101,7 +101,6 @@
     </para>
  </refsect1>
 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapclient/soapcall.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapclient/soapcall.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapclient/soapcall.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 329616 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: shimooka,mumumu -->

 <refentry xml:id="soapclient.soapcall" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -13,11 +13,11 @@
   &reftitle.description;
   <methodsynopsis>
    <modifier>public</modifier> <type>mixed</type><methodname>SoapClient::__soapCall</methodname>
-   <methodparam><type>string</type><parameter>function_name</parameter></methodparam>
-   <methodparam><type>array</type><parameter>arguments</parameter></methodparam>
-   <methodparam choice="opt"><type>array</type><parameter>options</parameter></methodparam>
-   <methodparam choice="opt"><type>mixed</type><parameter>input_headers</parameter></methodparam>
-   <methodparam choice="opt"><type>array</type><parameter role="reference">output_headers</parameter></methodparam>
+   <methodparam><type>string</type><parameter>name</parameter></methodparam>
+   <methodparam><type>array</type><parameter>args</parameter></methodparam>
+   <methodparam choice="opt"><type class="union"><type>array</type><type>null</type></type><parameter>options</parameter><initializer>&null;</initializer></methodparam>
+   <methodparam choice="opt"><type class="union"><type>SoapHeader</type><type>array</type><type>null</type></type><parameter>inputHeaders</parameter><initializer>&null;</initializer></methodparam>
+   <methodparam choice="opt"><type>array</type><parameter role="reference">outputHeaders</parameter><initializer>&null;</initializer></methodparam>
   </methodsynopsis>
   <para>
    本メソッドは、SOAP コールを行う低レベル API 関数です。
@@ -40,7 +40,7 @@
   <para>
    <variablelist>
     <varlistentry>
-     <term><parameter>function_name</parameter></term>
+     <term><parameter>name</parameter></term>
      <listitem>
       <para>
        コールしたい SOAP 関数の名前。
@@ -48,7 +48,7 @@
      </listitem>
     </varlistentry>
     <varlistentry>
-     <term><parameter>arguments</parameter></term>
+     <term><parameter>args</parameter></term>
      <listitem>
       <para>
        関数に渡す引数の配列。これは、数値添字配列あるいは連想配列のどちらの形式でもかまいません。
@@ -75,7 +75,7 @@
     </listitem>
     </varlistentry>
     <varlistentry>
-     <term><parameter>input_headers</parameter></term>
+     <term><parameter>inputHeaders</parameter></term>
      <listitem>
       <para>
        SOAP リクエストで送信するヘッダの配列。
@@ -83,7 +83,7 @@
      </listitem>
     </varlistentry>
     <varlistentry>
-     <term><parameter>output_headers</parameter></term>
+     <term><parameter>outputHeaders</parameter></term>
      <listitem>
       <para>
        指定すると、この配列に SOAP レスポンスのヘッダが書き込まれます。
@@ -155,7 +155,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapfault/construct.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapfault/construct.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapfault/construct.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapfault.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -11,15 +11,15 @@

  <refsect1 role="description">
   &reftitle.description;
-  <methodsynopsis>
-   <methodname>SoapFault::__construct</methodname>
-   <methodparam><type>string</type><parameter>faultcode</parameter></methodparam>
-   <methodparam><type>string</type><parameter>faultstring</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>faultactor</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>detail</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>faultname</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>headerfault</parameter></methodparam>
-  </methodsynopsis>
+  <constructorsynopsis>
+   <modifier>public</modifier> <methodname>SoapFault::__construct</methodname>
+   <methodparam><type class="union"><type>array</type><type>string</type><type>null</type></type><parameter>code</parameter></methodparam>
+   <methodparam><type>string</type><parameter>string</parameter></methodparam>
+   <methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>actor</parameter><initializer>&null;</initializer></methodparam>
+   <methodparam choice="opt"><type>mixed</type><parameter>details</parameter><initializer>&null;</initializer></methodparam>
+   <methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>name</parameter><initializer>&null;</initializer></methodparam>
+   <methodparam choice="opt"><type>mixed</type><parameter>headerFault</parameter><initializer>&null;</initializer></methodparam>
+  </constructorsynopsis>
   <para>
    &info.function.alias; <methodname>SoapFault::SoapFault</methodname>
   </para>
@@ -27,7 +27,6 @@


 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapparam/construct.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapparam/construct.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapparam/construct.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: shimooka -->

 <refentry xml:id="soapparam.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -11,11 +11,11 @@

  <refsect1 role="description">
   &reftitle.description;
-  <methodsynopsis>
-   <methodname>SoapParam::__construct</methodname>
+  <constructorsynopsis>
+   <modifier>public</modifier> <methodname>SoapParam::__construct</methodname>
    <methodparam><type>mixed</type><parameter>data</parameter></methodparam>
    <methodparam><type>string</type><parameter>name</parameter></methodparam>
-  </methodsynopsis>
+  </constructorsynopsis>
   <para>
    &info.function.alias; <methodname>SoapParam::SoapParam</methodname>
   </para>
@@ -22,7 +22,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapserver/addfunction.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapserver/addfunction.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapserver/addfunction.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 303893 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapserver.addfunction" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -13,7 +13,7 @@
   &reftitle.description;
   <methodsynopsis>
    <modifier>public</modifier> <type>void</type><methodname>SoapServer::addFunction</methodname>
-   <methodparam><type>mixed</type><parameter>functions</parameter></methodparam>
+   <methodparam><type class="union"><type>array</type><type>string</type><type>int</type></type><parameter>functions</parameter></methodparam>
   </methodsynopsis>
   <para>
    リモートクライアント用に単一もしくは複数の関数をエクスポートします。
@@ -104,7 +104,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapserver/addsoapheader.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapserver/addsoapheader.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapserver/addsoapheader.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 291207 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->

 <refentry xml:id="soapserver.addsoapheader" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -12,7 +12,7 @@
   &reftitle.description;
   <methodsynopsis>
    <modifier>public</modifier> <type>void</type><methodname>SoapServer::addSoapHeader</methodname>
-   <methodparam><type>SoapHeader</type><parameter>object</parameter></methodparam>
+   <methodparam><type>SoapHeader</type><parameter>header</parameter></methodparam>
   </methodsynopsis>
   <para>
    現在のリクエストから返されるレスポンスに SOAP ヘッダを追加します。
@@ -24,7 +24,7 @@
   <para>
    <variablelist>
     <varlistentry>
-     <term><parameter>object</parameter></term>
+     <term><parameter>header</parameter></term>
      <listitem>
       <para>
        返すヘッダ。
@@ -43,7 +43,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapserver/construct.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapserver/construct.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapserver/construct.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 321901 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapserver.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -11,11 +11,11 @@

  <refsect1 role="description">
   &reftitle.description;
-  <methodsynopsis>
+  <constructorsynopsis>
    <modifier>public</modifier> <methodname>SoapServer::__construct</methodname>
-   <methodparam><type>mixed</type><parameter>wsdl</parameter></methodparam>
-   <methodparam choice="opt"><type>array</type><parameter>options</parameter></methodparam>
-  </methodsynopsis>
+   <methodparam><type class="union"><type>string</type><type>null</type></type><parameter>wsdl</parameter></methodparam>
+   <methodparam choice="opt"><type>array</type><parameter>options</parameter><initializer>[]</initializer></methodparam>
+  </constructorsynopsis>
   <para>
    &info.function.alias; <methodname>SoapServer::SoapServer</methodname>
   </para>
@@ -22,7 +22,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapserver/fault.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapserver/fault.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapserver/fault.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: shimooka -->

 <refentry xml:id="soapserver.fault" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -15,9 +15,9 @@
    <modifier>public</modifier> <type>void</type><methodname>SoapServer::fault</methodname>
    <methodparam><type>string</type><parameter>code</parameter></methodparam>
    <methodparam><type>string</type><parameter>string</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>actor</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>details</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>name</parameter></methodparam>
+   <methodparam choice="opt"><type>string</type><parameter>actor</parameter><initializer>""</initializer></methodparam>
+   <methodparam choice="opt"><type>mixed</type><parameter>details</parameter><initializer>&null;</initializer></methodparam>
+   <methodparam choice="opt"><type>string</type><parameter>name</parameter><initializer>""</initializer></methodparam>
   </methodsynopsis>
   <para>
    現在のリクエストに対するレスポンスとして、エラーを表す内容をクライアントに送信します。
@@ -94,7 +94,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapserver/handle.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapserver/handle.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapserver/handle.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 288721 Maintainer: takagi Status: ready -->
-<!-- CREDITS: hirokawa,shimooka -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
+<!-- CREDITS: hirokawa,shimooka,mumumu -->

 <refentry xml:id="soapserver.handle" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -13,7 +13,7 @@
   &reftitle.description;
   <methodsynopsis>
    <modifier>public</modifier> <type>void</type><methodname>SoapServer::handle</methodname>
-   <methodparam choice="opt"><type>string</type><parameter>soap_request</parameter></methodparam>
+   <methodparam choice="opt"><type class="union"><type>string</type><type>null</type></type><parameter>request</parameter><initializer>&null;</initializer></methodparam>
   </methodsynopsis>
   <para>
    SOAP リクエストを処理し、必要な関数をコールし、レスポンスを返送します。
@@ -25,7 +25,7 @@
   <para>
    <variablelist>
     <varlistentry>
-     <term><parameter>soap_request</parameter></term>
+     <term><parameter>request</parameter></term>
      <listitem>
       <para>
        SOAP リクエスト。もし引数が省略された場合、
@@ -67,6 +67,28 @@
   </para>
  </refsect1>

+ <refsect1 role="changelog">
+  &reftitle.changelog;
+  <informaltable>
+   <tgroup cols="2">
+    <thead>
+     <row>
+      <entry>&Version;</entry>
+      <entry>&Description;</entry>
+     </row>
+    </thead>
+    <tbody>
+     <row>
+      <entry>8.0.0</entry>
+      <entry>
+       <parameter>request</parameter> は、nullable になりました。
+      </entry>
+     </row>
+    </tbody>
+   </tgroup>
+  </informaltable>
+ </refsect1>
+
  <refsect1 role="seealso">
   &reftitle.seealso;
   <para>
@@ -77,7 +99,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapserver/setclass.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapserver/setclass.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapserver/setclass.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 351129 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapserver.setclass" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -13,7 +13,7 @@
   &reftitle.description;
   <methodsynopsis>
    <modifier>public</modifier> <type>void</type><methodname>SoapServer::setClass</methodname>
-   <methodparam><type>string</type><parameter>class_name</parameter></methodparam>
+   <methodparam><type>string</type><parameter>class</parameter></methodparam>
    <methodparam rep="repeat"><type>mixed</type><parameter>args</parameter></methodparam>
   </methodsynopsis>
   <para>
@@ -32,7 +32,7 @@
   <para>
    <variablelist>
     <varlistentry>
-     <term><parameter>class_name</parameter></term>
+     <term><parameter>class</parameter></term>
      <listitem>
       <para>
        エクスポートするクラス名
@@ -71,7 +71,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml

Modified: phpdoc/ja/trunk/reference/soap/soapvar/construct.xml
===================================================================
--- phpdoc/ja/trunk/reference/soap/soapvar/construct.xml	2020-12-27 14:46:15 UTC (rev 352202)
+++ phpdoc/ja/trunk/reference/soap/soapvar/construct.xml	2020-12-27 15:40:14 UTC (rev 352203)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 339115 Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 352202 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,shimooka -->

 <refentry xml:id="soapvar.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -11,15 +11,15 @@

  <refsect1 role="description">
   &reftitle.description;
-  <methodsynopsis>
-   <methodname>SoapVar::__construct</methodname>
+  <constructorsynopsis>
+   <modifier>public</modifier> <methodname>SoapVar::__construct</methodname>
    <methodparam><type>mixed</type><parameter>data</parameter></methodparam>
-   <methodparam><type>string</type><parameter>encoding</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>type_name</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>type_namespace</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>node_name</parameter></methodparam>
-   <methodparam choice="opt"><type>string</type><parameter>node_namespace</parameter></methodparam>
-  </methodsynopsis>
+   <methodparam><type class="union"><type>int</type><type>null</type></type><parameter>encoding</parameter></methodparam>
+   <methodparam choice="opt"><type>string</type><parameter>typeName</parameter><initializer>""</initializer></methodparam>
+   <methodparam choice="opt"><type>string</type><parameter>typeNamespace</parameter><initializer>""</initializer></methodparam>
+   <methodparam choice="opt"><type>string</type><parameter>nodeName</parameter><initializer>""</initializer></methodparam>
+   <methodparam choice="opt"><type>string</type><parameter>nodeNamespace</parameter><initializer>""</initializer></methodparam>
+  </constructorsynopsis>
   <para>
    &info.function.alias; <methodname>SoapVar::SoapVar</methodname>
   </para>
@@ -26,7 +26,6 @@
  </refsect1>

 </refentry>
-
 <!-- Keep this comment at the end of the file
 Local variables:
 mode: sgml