Fix Doc Bug #55762: Online docs state incorrect modifier for properties on HttpRequest class.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@317154 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nikita Popov 2011-09-22 15:25:06 +00:00
parent 31d2d6d27a
commit f6b2438916

View file

@ -33,91 +33,91 @@
</thead>
<tbody>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>array</entry>
<entry>options</entry>
<entry>request options to configure the request; see &link.http.request.options;</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>array</entry>
<entry>postFields</entry>
<entry>form data: <literal><![CDATA[array("fieldname" => "fieldvalue")]]></literal></entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>array</entry>
<entry>postFiles</entry>
<entry>files to upload: <literal><![CDATA[array(array("name" => "image", "file" => "/home/u/images/u.png", "type" => "image/png"))]]></literal></entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>array</entry>
<entry>responseInfo</entry>
<entry>information (statistical) about the request/response; see &link.http.request.info;</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>HttpMessage</entry>
<entry>responseMessage</entry>
<entry>the response message</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>integer</entry>
<entry>responseCode</entry>
<entry>the numerical response code</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>string</entry>
<entry>responseStatus</entry>
<entry>the literal response status text</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>integer</entry>
<entry>method</entry>
<entry>the request method to use</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>string</entry>
<entry>url</entry>
<entry>the request url</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>string</entry>
<entry>contentType</entry>
<entry>the content type to use for raw post requests</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>string</entry>
<entry>rawPostData</entry>
<entry>raw post data</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>string</entry>
<entry>queryData</entry>
<entry>query parameters</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>string</entry>
<entry>putFile</entry>
<entry>the file to upload with a PUT request</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>string</entry>
<entry>putData</entry>
<entry>raw data to upload with a PUT request</entry>
</row>
<row>
<entry>protected</entry>
<entry>private</entry>
<entry>HttpMessage</entry>
<entry>history</entry>
<entry>the whole request/response history if history logging is enabled</entry>