diff --git a/system/arr.php b/system/arr.php index c3609d8d..199e415a 100644 --- a/system/arr.php +++ b/system/arr.php @@ -15,10 +15,7 @@ class Arr { */ public static function get($array, $key, $default = null) { - if (is_null($key)) - { - return $array; - } + if (is_null($key)) return $array; foreach (explode('.', $key) as $segment) {