Commit 648f0685 authored by pookey's avatar pookey

reverting previous change which references and closes #712

parent 89cb0eca
......@@ -1519,27 +1519,6 @@ abstract class Doctrine_Query_Abstract
return $this->_sqlParts;
}
/**
* getQueryPartValue
* return the value of queryPartName
*
* @param $queryPartName
* @return mixed value of queryPartName
*
*/
public function getQueryPartValue($queryPartName)
{
if(isset($this->_dqlParts[$queryPartName])) {
if(count($this->_dqlParts[$queryPartName]) == 1) {
return $this->_dqlParts[$queryPartName][0];
} else {
return $this->_dqlParts[$queryPartName];
}
} else {
return null;
}
}
/**
* getType
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment