Changeset 4467
- Timestamp:
- 06/02/08 18:29:58 (13 months ago)
- Files:
-
- 1 modified
-
branches/0.11/lib/Doctrine/Query/Abstract.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/Query/Abstract.php
r4448 r4467 1578 1578 * getSql 1579 1579 * shortcut for {@link getSqlQuery()}. 1580 * 1580 * 1581 * @param array $params (optional) 1581 1582 * @return string sql query string 1582 1583 */ 1583 public function getSql( )1584 { 1585 return $this->getSqlQuery( );1584 public function getSql($params = array()) 1585 { 1586 return $this->getSqlQuery($params); 1586 1587 } 1587 1588