clean up a few more things.

This commit is contained in:
Taylor Otwell
2011-09-17 23:55:36 -05:00
parent cb5a426cba
commit 7898094e25
2 changed files with 13 additions and 4 deletions

View File

@@ -108,7 +108,7 @@ return array(
($request->spoofed()) ? $input = $_POST : parse_str(file_get_contents('php://input'), $input);
}
unset($input['_REQUEST_METHOD_']);
unset($input['_REQUEST_METHOD']);
return new Input($container->resolve('laravel.file'), $container->resolve('laravel.cookie'), $input, $_FILES);
}),