From e78040aabd8f4a32c2a2b138992746e9c8d075d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Sessing=C3=B8?= Date: Thu, 18 Mar 2021 21:58:40 +0100 Subject: [PATCH] Fixed existing unit-tests. --- .idea/workspace.xml | 5 +---- src/Pecee/Http/Input/InputItem.php | 9 --------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8491a4e..b3aaabb 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -6,10 +6,7 @@ - - - diff --git a/src/Pecee/Http/Input/InputItem.php b/src/Pecee/Http/Input/InputItem.php index a6e0fd8..bd8667e 100644 --- a/src/Pecee/Http/Input/InputItem.php +++ b/src/Pecee/Http/Input/InputItem.php @@ -60,15 +60,6 @@ class InputItem implements IInputItem, \IteratorAggregate */ public function getValue() { - /*if(is_array($this->value) === true) { - $output = []; - foreach($this->value as $key => $val) { - $output[$key] = $val->getValue(); - } - - return $output; - }*/ - return $this->value; }