Changeset 4706 for branches/0.11/lib/Doctrine/Tree/Interface.php
- Timestamp:
- 07/23/08 22:21:13 (6 months ago)
- Files:
-
- 1 modified
-
branches/0.11/lib/Doctrine/Tree/Interface.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/Tree/Interface.php
r4656 r4706 51 51 * 52 52 * @param array $options options 53 * @param integer $fetchmode One of the Doctrine::HYDRATE_* constants.53 * @param integer $fetchmode One of the Doctrine::HYDRATE_* constants. 54 54 * @return object $iterator instance of Doctrine_Node_<Implementation>_PreOrderIterator 55 55 */ 56 public function fetchTree($options = array(), $hydrationMode = Doctrine::HYDRATE_RECORD);56 public function fetchTree($options = array(), $hydrationMode = null); 57 57 58 58 /** … … 61 61 * @param mixed $pk primary key as used by table::find() to locate node to traverse tree from 62 62 * @param array $options options 63 * @param 63 * @param integer $fetchmode One of the Doctrine::HYDRATE_* constants. 64 64 * @return iterator instance of Doctrine_Node_<Implementation>_PreOrderIterator 65 65 */ 66 public function fetchBranch($pk, $options = array(), $hydrationMode = Doctrine::HYDRATE_RECORD);66 public function fetchBranch($pk, $options = array(), $hydrationMode = null); 67 67 }