[#404] restored addFrom for the DQL - went missing in Query.php refactorings
This commit is contained in:
parent
b44f13e732
commit
bba435d7a1
1 changed files with 11 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue