Browse Source

Update laravel/cli/tasks/migrate/migrator.php

Vincent Talbot 12 years ago
parent
commit
c55a8f49dd
1 changed files with 11 additions and 11 deletions
  1. 11 11
      laravel/cli/tasks/migrate/migrator.php

+ 11 - 11
laravel/cli/tasks/migrate/migrator.php

@@ -105,17 +105,17 @@ class Migrator extends Task {
 
 		// If bundles supplied, filter migrations to rollback only bundles'
 		// migrations.
-    if (count($arguments) > 0)
-    {
-      $bundles = $arguments;
-
-      if ( ! is_array($bundles)) $bundles = array($bundles);
-
-      $migrations = array_filter($migrations, function($migration) use ($bundles)
-      {
-      	return in_array($migration['bundle'], $bundles);
-      });
-    }
+		if (count($arguments) > 0)
+		{
+			$bundles = $arguments;
+			
+			if ( ! is_array($bundles)) $bundles = array($bundles);
+			
+			$migrations = array_filter($migrations, function($migration) use ($bundles)
+			{
+				return in_array($migration['bundle'], $bundles);
+			});
+		}
 
 		if (count($migrations) == 0)
 		{