Merge pull request #36274 from nextcloud/backport/36264/stable25

[stable25] fix(occ): Fix comment formatting of maintenance:repair command
This commit is contained in:
Vincent Petry 2023-01-20 17:23:12 +01:00 committed by GitHub
commit b1b887bcad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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>');
}