Merge pull request #559 from ProgerXP/patch-ioc-resolve
IoC::resolve() - call_user_func_ARRAY()
This commit is contained in:
commit
45c9d15442
|
@ -125,7 +125,7 @@ public static function resolve($name, $parameters = array())
|
|||
return static::$singletons[$name];
|
||||
}
|
||||
|
||||
$object = call_user_func(static::$registry[$name]['resolver'], $parameters);
|
||||
$object = call_user_func_array(static::$registry[$name]['resolver'], $parameters);
|
||||
|
||||
// If the resolver is registering as a singleton resolver, we will cache
|
||||
// the instance of the object in the container so we can resolve it next
|
||||
|
|
Loading…
Reference in New Issue