diff --git a/lib/Doctrine/Query/Abstract.php b/lib/Doctrine/Query/Abstract.php index af0751c6e..aaf5cc3ea 100644 --- a/lib/Doctrine/Query/Abstract.php +++ b/lib/Doctrine/Query/Abstract.php @@ -43,6 +43,17 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate { return $this->parseQueryPart('select', $select, true); } + /** + * addFrom + * adds fields to the FROM part of the query + * + * @param string $from Query FROM part + * @return Doctrine_Query + */ + public function addFrom($from) + { + return $this->parseQueryPart('from', $from, true); + } /** * addWhere * adds conditions to the WHERE part of the query