Browse Source

[ZF-7315] Review phpDoc for API documentation generation

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@17649 44c647ce-9c0f-0410-b52a-842ac1e357ba
mikaelkael 16 năm trước cách đây
mục cha
commit
ff2b313508
1 tập tin đã thay đổi với 6 bổ sung11 xóa
  1. 6 11
      library/Zend/Db/Table.php

+ 6 - 11
library/Zend/Db/Table.php

@@ -21,7 +21,7 @@
  */
 
 /**
- * Zend_Db_Table_Abstract
+ * @see Zend_Db_Table_Abstract
  */
 require_once 'Zend/Db/Table/Abstract.php';
 
@@ -41,20 +41,20 @@ require_once 'Zend/Db/Table/Definition.php';
  */
 class Zend_Db_Table extends Zend_Db_Table_Abstract
 {
-    
+
     /**
      * __construct() - For concrete implementation of Zend_Db_Table
      *
      * @param string|array $config string can reference a Zend_Registry key for a db adapter
-     *                             OR it can refernece the name of a table
-     * @param unknown_type $definition 
+     *                             OR it can reference the name of a table
+     * @param array|Zend_Db_Table_Definition $definition 
      */
     public function __construct($config = array(), $definition = null)
     {
         if ($definition !== null && is_array($definition)) {
             $definition = new Zend_Db_Table_Definition($definition);
         }
-        
+
         if (is_string($config)) {
             if (Zend_Registry::isRegistered($config)) {
                 trigger_error(__CLASS__ . '::' . __METHOD__ . '(\'registryName\') is not valid usage of Zend_Db_Table, '
@@ -73,12 +73,7 @@ class Zend_Db_Table extends Zend_Db_Table_Abstract
                 }
             }
         }
-        
+
         parent::__construct($config);
     }
-    
-    
-    
-
-    
 }