Browse Source

more query refactoring.

Taylor Otwell 13 years ago
parent
commit
43f7e9e22d
1 changed files with 1 additions and 4 deletions
  1. 1 4
      laravel/db/query.php

+ 1 - 4
laravel/db/query.php

@@ -531,10 +531,7 @@ class Query {
 	 */
 	public function get($columns = array('*'))
 	{
-		if (is_null($this->select))
-		{
-			$this->select($columns);
-		}
+		if (is_null($this->select)) $this->select($columns);
 
 		$results = $this->connection->query($this->compiler->select($this), $this->bindings);