Browse Source

fixed bug in ioc container singleton resolution.

Taylor Otwell 13 years ago
parent
commit
f50a492510
1 changed files with 6 additions and 1 deletions
  1. 6 1
      laravel/container.php

+ 6 - 1
laravel/container.php

@@ -179,7 +179,12 @@ class Container {
 
 		$object = call_user_func($this->registry[$name]['resolver'], $this, $parameters);
 
-		return (isset($this->registry[$name]['singleton'])) ? $this->singletons[$name] = $object : $object;
+		if (isset($this->registry[$name]['singleton']) and $this->registry[$name]['singleton'])
+		{
+			return $this->singletons[$name] = $object;
+		}
+
+		return $object;
 	}
 
 }