IoC::registered check fixed
Returns true if the instance was registered with IoC::instance
This commit is contained in:
@@ -52,7 +52,7 @@ class IoC {
|
|||||||
*/
|
*/
|
||||||
public static function registered($name)
|
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user