Browse Source

Update migrator.php

when used in a setup task. The output created didn't add a line ending.
dotramses 11 years ago
parent
commit
852937baf4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      laravel/cli/tasks/migrate/migrator.php

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

@@ -200,7 +200,7 @@ class Migrator extends Task {
 			$table->primary(array('bundle', 'name'));
 		});
 
-		echo "Migration table created successfully.";
+		echo "Migration table created successfully.".PHP_EOL;
 	}
 
 	/**
@@ -275,4 +275,4 @@ class Migrator extends Task {
 		return $migration['bundle'].'/'.$migration['name'];
 	}
 
-}
+}