Beispiel #1
0
 /**
  * Returns a new source as left join of this and the given source.
  * @param Source $source
  * @param Condition $condition
  * @return Join
  */
 function LeftJoin(Table $table, Condition $condition, $prepend = false)
 {
     return $this->Join($table, JoinType::Left(), $condition, $prepend);
 }