major session refactoring.

This commit is contained in:
Taylor Otwell
2011-10-31 22:15:47 -05:00
parent 36ff7b81aa
commit 997a90bcf5
18 changed files with 484 additions and 503 deletions

View File

@@ -9,6 +9,16 @@ class IoC {
*/
public static $container;
/**
* Bootstrap the global IoC instance.
*
* @return void
*/
public static function bootstrap()
{
static::$container = new Container(Config::$items['container']);
}
/**
* Get the active container instance.
*