From f84bdb98a1dbb00a37abe9af4dbcc468a78a3592 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 21 Feb 2012 10:52:38 -0600 Subject: [PATCH] cleaning up code. --- laravel/cli/command.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/laravel/cli/command.php b/laravel/cli/command.php index bfd23adc..551e514d 100644 --- a/laravel/cli/command.php +++ b/laravel/cli/command.php @@ -29,7 +29,10 @@ 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, we'll resolve it. - if (Bundle::exists($bundle)) Bundle::start($bundle); + if (Bundle::exists($bundle)) + { + Bundle::start($bundle); + } $task = static::resolve($bundle, $task);