Changeset 3547
- Timestamp:
- 01/18/08 17:11:01 (18 months ago)
- Files:
-
- 1 modified
-
branches/0.10/lib/Doctrine/Hydrator.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Hydrator.php
r3295 r3547 61 61 public function hydrateResultSet($stmt, $tableAliases, $hydrationMode = null) 62 62 { 63 //$s = microtime(true); 63 if ($hydrationMode === null) { 64 $hydrationMode = $this->_hydrationMode; 65 } 64 66 65 67 $this->_tableAliases = $tableAliases; … … 67 69 if ($hydrationMode == Doctrine::HYDRATE_NONE) { 68 70 return $stmt->fetchAll(PDO::FETCH_NUM); 69 }70 71 if ($hydrationMode === null) {72 $hydrationMode = $this->_hydrationMode;73 71 } 74 72