Commit 0bdfea32 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #747 from kloy/master

Fixing bug in IoC::resolve
parents 3805b69a d0afdf7b
......@@ -114,7 +114,7 @@ class IoC {
// 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
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment