Browse Source

ZF-7315: review phpDoc for API documentation generation (Zend_Http)

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@16872 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael 16 years ago
parent
commit
c62d9a7d3b

+ 3 - 0
library/Zend/Http/Client/Adapter/Exception.php

@@ -20,6 +20,9 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Http_Client_Exception
+ */
 require_once 'Zend/Http/Client/Exception.php';
 
 /**

+ 9 - 0
library/Zend/Http/Client/Adapter/Proxy.php

@@ -21,8 +21,17 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Uri_Http
+ */
 require_once 'Zend/Uri/Http.php';
+/**
+ * @see Zend_Http_Client
+ */
 require_once 'Zend/Http/Client.php';
+/**
+ * @see Zend_Http_Client_Adapter_Socket
+ */
 require_once 'Zend/Http/Client/Adapter/Socket.php';
 
 /**

+ 6 - 0
library/Zend/Http/Client/Adapter/Socket.php

@@ -21,7 +21,13 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Uri_Http
+ */
 require_once 'Zend/Uri/Http.php';
+/**
+ * @see Zend_Http_Client_Adapter_Interface
+ */
 require_once 'Zend/Http/Client/Adapter/Interface.php';
 
 /**

+ 9 - 0
library/Zend/Http/Client/Adapter/Test.php

@@ -20,8 +20,17 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Uri_Http
+ */
 require_once 'Zend/Uri/Http.php';
+/**
+ * @see Zend_Http_Response
+ */
 require_once 'Zend/Http/Response.php';
+/**
+ * @see Zend_Http_Client_Adapter_Interface
+ */
 require_once 'Zend/Http/Client/Adapter/Interface.php';
 
 /**

+ 3 - 0
library/Zend/Http/Client/Exception.php

@@ -20,6 +20,9 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Http_Exception
+ */
 require_once 'Zend/Http/Exception.php';
 
 /**

+ 3 - 0
library/Zend/Http/Cookie.php

@@ -21,6 +21,9 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Uri_Http
+ */
 require_once 'Zend/Uri/Http.php';
 
 

+ 9 - 0
library/Zend/Http/CookieJar.php

@@ -20,8 +20,17 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Uri
+ */
 require_once "Zend/Uri.php";
+/**
+ * @see Zend_Http_Cookie
+ */
 require_once "Zend/Http/Cookie.php";
+/**
+ * @see Zend_Http_Response
+ */
 require_once "Zend/Http/Response.php";
 
 /**

+ 3 - 0
library/Zend/Http/Exception.php

@@ -20,6 +20,9 @@
  * @license    http://framework.zend.com/license/new-bsd     New BSD License
  */
 
+/**
+ * @see Zend_Exception
+ */
 require_once 'Zend/Exception.php';
 
 /**