3131 * @version $Revision$
3232 * @link www.doctrine-project.org
3333 * @since 1.0
34- * @method mixed findBy*(mixed $value) magic finders; @see __call()
35- * @method mixed findOneBy*(mixed $value) magic finders; @see __call()
3634 */
3735class Doctrine_Table extends Doctrine_Configurable implements Countable, Serializable
3836{
@@ -561,7 +559,7 @@ public function getRecordInstance()
561559 /**
562560 * Checks whether a column is inherited from a component further up in the hierarchy.
563561 *
564- * @param $columnName The column name
562+ * @param string $columnName The column name
565563 * @return boolean TRUE if column is inherited, FALSE otherwise.
566564 */
567565 public function isInheritedColumn ($ columnName )
@@ -1133,7 +1131,7 @@ public function processOrderBy($alias, $orderBy, $columnNames = false)
11331131 }
11341132
11351133 // Php8.1 require a string
1136- if (null === $ orderBy ) {
1134+ if (null === $ orderBy ) {
11371135 $ orderBy = '' ;
11381136 }
11391137
@@ -3035,7 +3033,7 @@ public function __serialize() {
30353033 /**
30363034 * Unserializes a Doctrine_Record instance for php 7.4+
30373035 *
3038- * @param array $serialized
3036+ * @param array $data
30393037 */
30403038 public function __unserialize ($ data ) {
30413039
@@ -3052,7 +3050,10 @@ public function __unserialize($data) {
30523050 $ this ->_useIdentityMap = $ data [10 ];
30533051 }
30543052
3055-
3053+ /**
3054+ * Creates new instance and initialize it from cache.
3055+ *
3056+ */
30563057 public function initializeFromCache (Doctrine_Connection $ conn )
30573058 {
30583059 $ this ->_conn = $ conn ;
0 commit comments