Browse Source

remove query::table method.

Taylor Otwell 13 years ago
parent
commit
bf0aaa3cc7
1 changed files with 2 additions and 19 deletions
  1. 2 19
      laravel/db/query.php

+ 2 - 19
laravel/db/query.php

@@ -90,18 +90,6 @@ class Query {
 		$this->from = 'FROM '.$this->wrap($table);
 	}
 
-	/**
-	 * Create a new query instance.
-	 *
-	 * @param  string      $table
-	 * @param  Connection  $connection
-	 * @return Query
-	 */
-	public static function table($table, Connection $connection)
-	{
-		return new static($table, $connection);
-	}
-
 	/**
 	 * Force the query to return distinct results.
 	 *
@@ -638,16 +626,11 @@ class Query {
 	 */
 	private function wrap($value)
 	{
-		if (strpos(strtolower($value), ' as ') !== false)
-		{
-			return $this->wrap_alias($value);
-		}
-
-		$wrap = $this->connection->wrapper();
+		if (strpos(strtolower($value), ' as ') !== false) return $this->wrap_alias($value);
 
 		foreach (explode('.', $value) as $segment)
 		{
-			$wrapped[] = ($segment != '*') ? $wrap.$segment.$wrap : $segment;
+			$wrapped[] = ($segment != '*') ? $this->connection->wrapper().$segment.$this->connection->wrapper() : $segment;
 		}
 
 		return implode('.', $wrapped);