Browse Source

Removing comment bloat from Config class.

Taylor Otwell 13 years ago
parent
commit
1091bd8591
1 changed files with 0 additions and 4 deletions
  1. 0 4
      system/config.php

+ 0 - 4
system/config.php

@@ -38,10 +38,8 @@ class Config {
 	{
 		list($module, $file, $key) = static::parse($key);
 
-		// If the configuration file doesn't exist, return the default value.
 		if ( ! static::load($module, $file)) return is_callable($default) ? call_user_func($default) : $default;
 
-		// If no key was specified, return the entire configuration array.
 		if (is_null($key)) return static::$items[$module][$file];
 
 		return Arr::get(static::$items[$module][$file], $key, $default);
@@ -104,10 +102,8 @@ class Config {
 
 		$path = ($module === 'application') ? CONFIG_PATH : MODULE_PATH.$module.'/config/';
 
-		// Load the base configuration items for the module and file.
 		$config = (file_exists($base = $path.$file.EXT)) ? require $base : array();
 
-		// Merge any enviornment specific configuration items for the module and file.
 		if (isset($_SERVER['LARAVEL_ENV']) and file_exists($path = $path.$_SERVER['LARAVEL_ENV'].'/'.$file.EXT))
 		{
 			$config = array_merge($config, require $path);