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);