Browse Source

cleaning up code.

Taylor Otwell 12 years ago
parent
commit
f84bdb98a1
1 changed files with 4 additions and 1 deletions
  1. 4 1
      laravel/cli/command.php

+ 4 - 1
laravel/cli/command.php

@@ -29,7 +29,10 @@ class Command {
 		// If the task exists within a bundle, we will start the bundle so that any
 		// 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
 		// dependencies can be registered in the application IoC container. If the
 		// task is registered in the container,  we'll resolve it.
 		// 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);
 		$task = static::resolve($bundle, $task);