fix(occ): Fix comment formatting of maintenance:repair command

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2023-01-20 09:58:22 +01:00
parent fce87f8ddb
commit a8bad3a98f
No known key found for this signature in database
GPG key ID: CC42AC2A7F0E56D8

View file

@ -136,7 +136,7 @@ class Repair extends Command {
} elseif ($event instanceof RepairInfoEvent) {
$this->output->writeln('<info> - ' . $event->getMessage() . '</info>');
} elseif ($event instanceof RepairWarningEvent) {
$this->output->writeln('<comment> - WARNING: ' . $event->getMessage()) . '</comment>';
$this->output->writeln('<comment> - WARNING: ' . $event->getMessage() . '</comment>');
} elseif ($event instanceof RepairErrorEvent) {
$this->output->writeln('<error> - ERROR: ' . $event->getMessage() . '</error>');
}