Completed
Push — master ( bec334...59c044 )
by Tomas
04:35
created
src/Params/InputParam.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,9 +93,9 @@
 block discarded – undo
93 93
             return filter_input(INPUT_POST, $this->key);
94 94
         }
95 95
         if ($this->type == self::TYPE_FILE) {
96
-           if (isset($_FILES[$this->key])) {
97
-               return $_FILES[$this->key];
98
-           }
96
+            if (isset($_FILES[$this->key])) {
97
+                return $_FILES[$this->key];
98
+            }
99 99
         }
100 100
         
101 101
         throw new Exception("Invalid type");
Please login to merge, or discard this patch.