summaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2023-01-20 09:58:22 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2023-01-20 10:00:41 +0100
commita8bad3a98fc20ebfedc23372d5bec50ebf4e1777 (patch)
tree4dcec86693e22af069dede8a726c9cf6f7057c8b /core/Command
parentfce87f8ddb2d523a503051362a66b7453bc2329b (diff)
downloadnextcloud-server-a8bad3a98fc20ebfedc23372d5bec50ebf4e1777.tar.gz
nextcloud-server-a8bad3a98fc20ebfedc23372d5bec50ebf4e1777.zip
fix(occ): Fix comment formatting of maintenance:repair command
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/Maintenance/Repair.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/Repair.php b/core/Command/Maintenance/Repair.php
index e1d1862f3f4..01e62f2cd32 100644
--- a/core/Command/Maintenance/Repair.php
+++ b/core/Command/Maintenance/Repair.php
@@ -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>');
}