Commit 50dc9f86 authored by Taylor Otwell's avatar Taylor Otwell

Use regular array_merge on Input::all().

parent e256a66b
......@@ -23,7 +23,7 @@ class Input {
*/
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]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment