diff --git a/artisan b/artisan index 5fd33ef6..ebd9d00b 100644 --- a/artisan +++ b/artisan @@ -3,7 +3,7 @@ * Laravel - A PHP Framework For Web Artisans * * @package Laravel - * @version 3.0.3 + * @version 3.0.4 * @author Taylor Otwell * @link http://laravel.com */ diff --git a/laravel/ioc.php b/laravel/ioc.php index de8e2939..b02280f9 100644 --- a/laravel/ioc.php +++ b/laravel/ioc.php @@ -130,7 +130,7 @@ public static function resolve($name, $parameters = array()) // 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 // time without having to instantiate a brand new instance. - if (isset(static::$registry[$name]['singleton'])) + if (static::$registry[$name]['singleton']) { return static::$singletons[$name] = $object; } diff --git a/paths.php b/paths.php index 4d9501a7..73d397c1 100644 --- a/paths.php +++ b/paths.php @@ -3,7 +3,7 @@ * Laravel - A PHP Framework For Web Artisans * * @package Laravel - * @version 3.0.3 + * @version 3.0.4 * @author Taylor Otwell * @link http://laravel.com */ diff --git a/public/index.php b/public/index.php index 37903a3a..64d5e837 100644 --- a/public/index.php +++ b/public/index.php @@ -3,7 +3,7 @@ * Laravel - A PHP Framework For Web Artisans * * @package Laravel - * @version 3.0.3 + * @version 3.0.4 * @author Taylor Otwell * @link http://laravel.com */