Browse Source

refactoring database layer.

Taylor Otwell 13 years ago
parent
commit
cd609d9b39
1 changed files with 1 additions and 3 deletions
  1. 1 3
      laravel/database/query.php

+ 1 - 3
laravel/database/query.php

@@ -165,9 +165,7 @@ class Query {
 	 */
 	 */
 	public function reset_where()
 	public function reset_where()
 	{
 	{
-		$this->wheres = array();
-
-		$this->bindings = array();
+		list($this->wheres, $this->bindings) = array(array(), array());
 	}
 	}
 
 
 	/**
 	/**