Browse Source

Fixed wrong calling of the IoC resolver.
Signed-off-by: Pavel <proger.xp@gmail.com>

Pavel 12 years ago
parent
commit
3f5a92ea5c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/ioc.php

+ 1 - 1
laravel/ioc.php

@@ -125,7 +125,7 @@ class IoC {
 			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