mirror of
https://github.com/nextcloud/server.git
synced 2026-03-21 18:11:02 -04:00
fix(occ): Fix comment formatting of maintenance:repair command
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
fce87f8ddb
commit
a8bad3a98f
1 changed files with 1 additions and 1 deletions
|
|
@ -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>');
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue