Merge pull request #747 from kloy/master

Fixing bug in IoC::resolve
This commit is contained in:
Taylor Otwell 2012-06-03 15:33:07 -07:00
commit 0bdfea32e7
1 changed files with 1 additions and 1 deletions

View File

@ -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
{