From 4701cbfe652f6a13e79ad0219d2b513d4214e1cc Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Mon, 12 Mar 2012 15:32:04 -0400 Subject: [PATCH] Removed duplicate 'join' method --- sys/db/query_builder.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/sys/db/query_builder.php b/sys/db/query_builder.php index feda60b..9b93b50 100644 --- a/sys/db/query_builder.php +++ b/sys/db/query_builder.php @@ -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; - } // --------------------------------------------------------------------------