diff --git a/system/input.php b/system/input.php index 193015cf..6b22be1e 100644 --- a/system/input.php +++ b/system/input.php @@ -41,10 +41,7 @@ class Input { */ public static function get($key = null, $default = null) { - if (is_null(static::$input)) - { - static::hydrate(); - } + if (is_null(static::$input)) static::hydrate(); return Arr::get(static::$input, $key, $default); }