From 2812318254db47feed9c02adc887a918b1063e10 Mon Sep 17 00:00:00 2001 From: romanb Date: Sat, 28 Mar 2009 21:00:02 +0000 Subject: [PATCH] [2.0] Removed ParserResultDummy that is no longer necessary. --- lib/Doctrine/ORM/Query/ParserResultDummy.php | 78 -------------------- 1 file changed, 78 deletions(-) delete mode 100644 lib/Doctrine/ORM/Query/ParserResultDummy.php diff --git a/lib/Doctrine/ORM/Query/ParserResultDummy.php b/lib/Doctrine/ORM/Query/ParserResultDummy.php deleted file mode 100644 index 736b77095..000000000 --- a/lib/Doctrine/ORM/Query/ParserResultDummy.php +++ /dev/null @@ -1,78 +0,0 @@ -_isMixedQuery; - } - - public function isIdentityQuery() - { - return $this->_isIdentityQuery; - } - - public function setMixedQuery($bool) - { - $this->_isMixedQuery = (bool) $bool; - } - - public function getDatabaseStatement() - { - return $this->_dbStatement; - } - - public function setDatabaseStatement($stmt) - { - $this->_dbStatement = $stmt; - } - - public function getHydrationMode() - { - return $this->_hydrationMode; - } - - public function setHydrationMode($hydrationMode) - { - $this->_hydrationMode = $hydrationMode; - } - - public function getTableToClassAliasMap() - { - return $this->_tableToClassAliasMap; - } - - public function getTableAliasMap() - { - return $this->_tableToClassAliasMap; - } - - public function setTableToClassAliasMap(array $map) - { - $this->_tableToClassAliasMap = $map; - } - - public function setQueryComponents(array $queryComponents) - { - $this->_queryComponents = $queryComponents; - } - - public function getQueryComponents() - { - return $this->_queryComponents; - } -} \ No newline at end of file