Browse Source

refactoring database query class.

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

+ 3 - 1
laravel/database/query.php

@@ -208,7 +208,9 @@ class Query {
 	 */
 	 */
 	public function where($column, $operator, $value, $connector = 'AND')
 	public function where($column, $operator, $value, $connector = 'AND')
 	{
 	{
-		$this->wheres[] = array_merge(array('type' => 'where'), compact('column', 'operator', 'value', 'connector'));
+		$type = 'where';
+
+		$this->wheres[] = compact('type', 'column', 'operator', 'value', 'connector');
 
 
 		$this->bindings[] = $value;
 		$this->bindings[] = $value;