Browse Source

tweaking config class comments.

Taylor Otwell 14 years ago
parent
commit
9e8f5d57c1
1 changed files with 2 additions and 4 deletions
  1. 2 4
      system/config.php

+ 2 - 4
system/config.php

@@ -17,9 +17,9 @@ class Config {
 	 */
 	public static function get($key)
 	{
-
 		// -----------------------------------------------------
-		// We are are just pulling in a file, skip loading a key
+		// If a dot is not present, we will just return the
+		// entire configuration array.
 		// -----------------------------------------------------
 		if(strpos($key, '.') == 0)
 		{
@@ -29,7 +29,6 @@ class Config {
 		}
 
 		list($file, $key) = static::parse($key);
-		
 		static::load($file);
 
 		if (array_key_exists($key, static::$items[$file]))
@@ -50,7 +49,6 @@ class Config {
 	public static function set($key, $value)
 	{
 		list($file, $key) = static::parse($key);
-
 		static::load($file);
 
 		static::$items[$file][$key] = $value;