Removed duplicate 'join' method

This commit is contained in:
Timothy Warren 2012-03-12 15:32:04 -04:00
parent 0eb9de2ba6
commit 4701cbfe65
1 changed files with 0 additions and 16 deletions

View File

@ -414,22 +414,6 @@ class Query_Builder {
// @todo implement order_by method
return $this;
}
// --------------------------------------------------------------------------
/**
* Join a table
*
* @param string $table
* @param string $statement
* @param string $type
* @return $this
*/
public function join($table, $statement, $type='INNER')
{
// @todo implement join method
return $this;
}
// --------------------------------------------------------------------------