1
0
Fork 0
mirror of synced 2025-04-03 05:13:37 +03:00

[#404] restored addFrom for the DQL - went missing in Query.php refactorings

This commit is contained in:
RossC0 2007-07-20 10:11:13 +00:00
parent b44f13e732
commit bba435d7a1

View file

@ -43,6 +43,17 @@ abstract class Doctrine_Query_Abstract extends Doctrine_Hydrate
{ {
return $this->parseQueryPart('select', $select, true); 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 * addWhere
* adds conditions to the WHERE part of the query * adds conditions to the WHERE part of the query