Browse Source

Refactor the configuration class for more simplicity.

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

+ 1 - 8
system/config.php

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