1
0
mirror of synced 2024-12-13 06:46:03 +03:00

Undid change to reset(), it broke the tests.

This commit is contained in:
jwage 2008-01-23 00:59:30 +00:00
parent c8c859baec
commit 9ee248bfe7

View File

@ -193,17 +193,6 @@ class Doctrine_Query extends Doctrine_Query_Abstract implements Countable, Seria
*/
public function reset()
{
$this->_dqlParts = array('from' => array(),
'select' => array(),
'forUpdate' => false,
'set' => array(),
'join' => array(),
'where' => array(),
'groupby' => array(),
'having' => array(),
'orderby' => array(),
'limit' => array(),
'offset' => array());
$this->_pendingJoinConditions = array();
$this->_pendingSubqueries = array();
$this->_pendingFields = array();