Update migrator.php
when used in a setup task. The output created didn't add a line ending.
This commit is contained in:
parent
b9cf8dfb71
commit
852937baf4
|
@ -200,7 +200,7 @@ public function install()
|
||||||
$table->primary(array('bundle', 'name'));
|
$table->primary(array('bundle', 'name'));
|
||||||
});
|
});
|
||||||
|
|
||||||
echo "Migration table created successfully.";
|
echo "Migration table created successfully.".PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -275,4 +275,4 @@ protected function display($migration)
|
||||||
return $migration['bundle'].'/'.$migration['name'];
|
return $migration['bundle'].'/'.$migration['name'];
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue