refactoring and tweaking.

This commit is contained in:
Taylor Otwell
2011-09-30 20:28:45 -05:00
parent 14186a00e0
commit 21592ec67f
2 changed files with 20 additions and 0 deletions

View File

@@ -140,4 +140,15 @@ class Config {
return isset(static::$items[$file]);
}
/**
* Add a directory to the configuration manager's search paths.
*
* @param string $path
* @return void
*/
public static function glance($path)
{
static::$paths[] = $path;
}
}