Browse Source

More improvements to the configuration class.

Taylor Otwell 13 years ago
parent
commit
7b0495e864
1 changed files with 1 additions and 3 deletions
  1. 1 3
      system/config.php

+ 1 - 3
system/config.php

@@ -42,9 +42,7 @@ class Config {
 
 		static::load($module, $file);
 
-		if (is_null($key)) return static::$items[$module][$file];
-
-		return Arr::get(static::$items[$module][$file], $key, $default);
+		return (is_null($key)) ? static::$items[$module][$file] : Arr::get(static::$items[$module][$file], $key, $default);
 	}
 
 	/**