From 891c2092eb0ec4f5232c07e9d1c4883ccc06ea1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sessing=C3=B8?= Date: Wed, 17 Mar 2021 19:25:18 +0100 Subject: [PATCH] Changed codestyle to match the rest --- src/Pecee/Http/Input/InputHandler.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Pecee/Http/Input/InputHandler.php b/src/Pecee/Http/Input/InputHandler.php index 69690dc..6d02116 100644 --- a/src/Pecee/Http/Input/InputHandler.php +++ b/src/Pecee/Http/Input/InputHandler.php @@ -313,7 +313,7 @@ class InputHandler $output = (\count($filter) > 0) ? array_intersect_key($output, array_flip($filter)) : $output; foreach ($filter as $filterKey) { - if (!array_key_exists($filterKey, $output)) { + if (array_key_exists($filterKey, $output) === false) { $output[$filterKey] = null; } } @@ -354,4 +354,4 @@ class InputHandler $this->file[$key] = $item; } -} \ No newline at end of file +}