Browse Source

Make the query where_nested method public.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
Taylor Otwell 13 years ago
parent
commit
3de0d1af66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/database/query.php

+ 1 - 1
laravel/database/query.php

@@ -393,7 +393,7 @@ class Query {
 	 * @param  string   $connector
 	 * @return Query
 	 */
-	protected function where_nested($callback, $connector)
+	public function where_nested($callback, $connector = 'AND')
 	{
 		$type = 'where_nested';