From b694a7c0c96d07297f7579b81b1d3171f2f6d5c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sessing=C3=B8?= Date: Mon, 28 Nov 2016 04:39:34 +0100 Subject: [PATCH] More cleanup --- src/Pecee/Http/Input/Input.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Pecee/Http/Input/Input.php b/src/Pecee/Http/Input/Input.php index a1aa0b1..ae86bca 100644 --- a/src/Pecee/Http/Input/Input.php +++ b/src/Pecee/Http/Input/Input.php @@ -58,10 +58,9 @@ class Input public function parseFiles() { - $files = $_FILES; $list = []; - foreach ($files as $key => $value) { + foreach ($_FILES as $key => $value) { // Handle array input if (is_array($value['name']) === false) {