From f7cdb76f36bf00f9016bc28eb19162cf71fee476 Mon Sep 17 00:00:00 2001 From: Neo Ighodaro Date: Sun, 9 Sep 2012 09:08:55 +0100 Subject: [PATCH 1/2] The bundle variable is not defined anywhere in the method scope. --- laravel/cli/tasks/bundle/providers/provider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/cli/tasks/bundle/providers/provider.php b/laravel/cli/tasks/bundle/providers/provider.php index 258500c2..d22487f7 100644 --- a/laravel/cli/tasks/bundle/providers/provider.php +++ b/laravel/cli/tasks/bundle/providers/provider.php @@ -73,7 +73,7 @@ protected function download($url) // zip that was put in the storage directory. if ($remote === false) { - throw new \Exception("Error downloading bundle [{$bundle}]."); + throw new \Exception("Error downloading bundle."); } return $remote; From f0a2ffef2b2178a4f9e56b453397cccf924f3632 Mon Sep 17 00:00:00 2001 From: Neo Ighodaro Date: Sun, 9 Sep 2012 09:09:41 +0100 Subject: [PATCH 2/2] The bundle variable is not defined anywhere in the method scope. Signed-off-by: Neo Ighodaro --- laravel/cli/tasks/bundle/providers/provider.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/cli/tasks/bundle/providers/provider.php b/laravel/cli/tasks/bundle/providers/provider.php index d22487f7..8ac853ff 100644 --- a/laravel/cli/tasks/bundle/providers/provider.php +++ b/laravel/cli/tasks/bundle/providers/provider.php @@ -73,7 +73,7 @@ protected function download($url) // zip that was put in the storage directory. if ($remote === false) { - throw new \Exception("Error downloading bundle."); + throw new \Exception("Error downloading the requested bundle."); } return $remote;