Skip to content

Commit c6f9ae2

Browse files
Fixed incorrect type
Closes #33768
1 parent 3dcd12b commit c6f9ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Support/Arr.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ public static function sortRecursive($array)
628628
*/
629629
public static function query($array)
630630
{
631-
return http_build_query($array, null, '&', PHP_QUERY_RFC3986);
631+
return http_build_query($array, '', '&', PHP_QUERY_RFC3986);
632632
}
633633

634634
/**

0 commit comments

Comments
 (0)