Browse Source

refactoring some classes.

Taylor Otwell 13 years ago
parent
commit
c67a010c5c
3 changed files with 3 additions and 2 deletions
  1. 0 1
      laravel/bootstrap/core.php
  2. 2 0
      laravel/container.php
  3. 1 1
      laravel/url.php

+ 0 - 1
laravel/bootstrap/core.php

@@ -58,7 +58,6 @@ require SYS_PATH.'autoloader'.EXT;
  * request rather than parse the keys for every request.
  * request rather than parse the keys for every request.
  */
  */
 Config::load('application');
 Config::load('application');
-Config::load('container');
 Config::load('session');
 Config::load('session');
 
 
 /**
 /**

+ 2 - 0
laravel/container.php

@@ -16,6 +16,8 @@ class IoC {
 	 */
 	 */
 	public static function bootstrap()
 	public static function bootstrap()
 	{
 	{
+		Config::load('container');
+
 		static::$container = new Container(Config::$items['container']);
 		static::$container = new Container(Config::$items['container']);
 	}
 	}
 
 

+ 1 - 1
laravel/url.php

@@ -90,7 +90,7 @@ class URL {
 	 */
 	 */
 	public static function to_route($name, $parameters = array(), $https = false)
 	public static function to_route($name, $parameters = array(), $https = false)
 	{
 	{
-		if ( ! is_null($route = IoC::container()->core('routing.router')->find($name)))
+		if ( ! is_null($route = IoC::core('routing.router')->find($name)))
 		{
 		{
 			$uris = explode(', ', key($route));
 			$uris = explode(', ', key($route));