Use regular array_merge on Input::all().

This commit is contained in:
Taylor Otwell 2012-05-03 17:32:33 -05:00
parent e256a66b18
commit 50dc9f8663
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class Input {
*/ */
public static function all() public static function all()
{ {
$input = array_merge_recursive(static::get(), static::query(), static::file()); $input = array_merge(static::get(), static::query(), static::file());
unset($input[Request::spoofer]); unset($input[Request::spoofer]);