fixing bug where parameters are not passed in IoC::resolve()
This commit is contained in:
parent
63b1636d13
commit
d0afdf7bb2
|
@ -114,7 +114,7 @@ public static function resolve($type, $parameters = array())
|
|||
// its nested dependencies recursively until they are each resolved.
|
||||
if ($concrete == $type or $concrete instanceof Closure)
|
||||
{
|
||||
$object = static::build($concrete);
|
||||
$object = static::build($concrete, $parameters);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue