Browse Source

Allow closures as Config default.

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

+ 1 - 1
system/config.php

@@ -44,7 +44,7 @@ class Config {
 		// Verify that the configuration file actually exists.
 		if ( ! array_key_exists($file, static::$items))
 		{
-			return $default;
+			return is_callable($default) ? call_user_func($default) : $default;
 		}
 
 		return Arr::get(static::$items[$file], $key, $default);