Changeset 5120
- Timestamp:
- 10/21/08 21:48:03 (9 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Query/Abstract.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Query/Abstract.php
r5087 r5120 540 540 { 541 541 return array_merge($params, $this->_params['join'], $this->_params['set'], $this->_params['where'], $this->_params['having']); 542 } 543 544 /** 545 * Get the raw array of parameters 546 * 547 * @return array 548 */ 549 public function getRawParams() 550 { 551 return $this->_params; 542 552 } 543 553