Skip to content

Commit

Permalink
Fixed incorrect type
Browse files Browse the repository at this point in the history
Closes #33768
  • Loading branch information
GrahamCampbell committed Aug 6, 2020
1 parent 3dcd12b commit c6f9ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Support/Arr.php
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ public static function sortRecursive($array)
*/
public static function query($array)
{
return http_build_query($array, null, '&', PHP_QUERY_RFC3986);
return http_build_query($array, '', '&', PHP_QUERY_RFC3986);
}

/**
Expand Down

0 comments on commit c6f9ae2

Please sign in to comment.