Fixed IoC::resolve forces singleton issue.
Signed-off-by: Rack Lin <racklin@gmail.com>
This commit is contained in:
parent
25b8bd889b
commit
096f9c2b78
|
@ -124,7 +124,7 @@ public static function resolve($type, $parameters = array())
|
|||
// If the requested type is registered as a singleton, we want to cache off
|
||||
// the instance in memory so we can return it later without creating an
|
||||
// entirely new instances of the object on each subsequent request.
|
||||
if (isset(static::$registry[$type]['singleton']))
|
||||
if (isset(static::$registry[$type]['singleton']) && static::$registry[$type]['singleton'] === true)
|
||||
{
|
||||
static::$singletons[$type] = $object;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue