Commit 98fa9078 authored by Taylor Otwell's avatar Taylor Otwell

Use array_merge_recursive in input class.

Signed-off-by: 's avatarTaylor Otwell <taylorotwell@gmail.com>
parent 73e355bf
......@@ -16,7 +16,7 @@ class Input {
*/
public static function all()
{
$input = array_merge(static::get(), static::query(), static::file());
$input = array_merge_recursive(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