From 852937baf4ea1a4aedfe983b495d577e2e297ea7 Mon Sep 17 00:00:00 2001 From: dotramses Date: Sat, 4 May 2013 22:28:09 +0300 Subject: [PATCH] Update migrator.php when used in a setup task. The output created didn't add a line ending. --- laravel/cli/tasks/migrate/migrator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/cli/tasks/migrate/migrator.php b/laravel/cli/tasks/migrate/migrator.php index 5913b9847..fe2ce7cba 100644 --- a/laravel/cli/tasks/migrate/migrator.php +++ b/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']; } -} \ No newline at end of file +}