Browse Source

IoC::registered check fixed

Returns true if the instance was registered with IoC::instance
Max 11 years ago
parent
commit
e1fde01e9d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/ioc.php

+ 2 - 2
laravel/ioc.php

@@ -52,7 +52,7 @@ class IoC {
 	 */
 	public static function registered($name)
 	{
-		return array_key_exists($name, static::$registry);
+		return array_key_exists($name, static::$registry) || array_key_exists($name, static::$singletons);
 	}
 
 	/**
@@ -246,4 +246,4 @@ class IoC {
 		}
 	}
 
-}
+}