Browse Source

Continuing to refactor the configuration class.

Taylor Otwell 13 years ago
parent
commit
de38744d78
1 changed files with 8 additions and 1 deletions
  1. 8 1
      system/config.php

+ 8 - 1
system/config.php

@@ -62,7 +62,14 @@ class Config {
 
 		static::load($module, $file);
 
-		(is_null($key)) ? static::$items[$module][$file] = $value : Arr::set(static::$items[$module][$file], $key, $value);
+		if (is_null($key))
+		{
+			static::$items[$module][$file] = $value;
+		}
+		else
+		{
+			Arr::set(static::$items[$module][$file], $key, $value);
+		}
 	}
 
 	/**