From 271e73462dc2396c8a496637e96dacb431bc85b2 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 21 Feb 2012 10:52:19 -0600 Subject: [PATCH] cleaning up code. --- laravel/cli/command.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/laravel/cli/command.php b/laravel/cli/command.php index 72cf90d2..bfd23adc 100644 --- a/laravel/cli/command.php +++ b/laravel/cli/command.php @@ -28,8 +28,7 @@ public static function run($arguments = array()) // If the task exists within a bundle, we will start the bundle so that any // dependencies can be registered in the application IoC container. If the - // task is registered in the container, it will be resolved via the - // container instead of by this class. + // task is registered in the container, we'll resolve it. if (Bundle::exists($bundle)) Bundle::start($bundle); $task = static::resolve($bundle, $task);