Fix live output in ResetCommand

This was forgotten in 9e487b4.

Fixes #1663.
This commit is contained in:
Franz Liedke 2018-11-29 22:03:22 +01:00
parent 45afc33eb0
commit f591585d02
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

View File

@ -71,11 +71,8 @@ class ResetCommand extends AbstractCommand
$this->info('Rolling back extension: '.$extensionName);
$notes = $this->manager->migrateDown($extension);
foreach ($notes as $note) {
$this->info($note);
}
$this->manager->getMigrator()->setOutput($this->output);
$this->manager->migrateDown($extension);
$this->info('DONE.');
}