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)
|
||||
{
|
||||
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 {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user