Skip to content

Commit 852937b

Browse files
committed
Update migrator.php
when used in a setup task. The output created didn't add a line ending.
1 parent b9cf8df commit 852937b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

laravel/cli/tasks/migrate/migrator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public function install()
200200
$table->primary(array('bundle', 'name'));
201201
});
202202

203-
echo "Migration table created successfully.";
203+
echo "Migration table created successfully.".PHP_EOL;
204204
}
205205

206206
/**
@@ -275,4 +275,4 @@ protected function display($migration)
275275
return $migration['bundle'].'/'.$migration['name'];
276276
}
277277

278-
}
278+
}

0 commit comments

Comments
 (0)