diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-01-20 09:58:22 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-01-20 10:00:41 +0100 |
commit | a8bad3a98fc20ebfedc23372d5bec50ebf4e1777 (patch) | |
tree | 4dcec86693e22af069dede8a726c9cf6f7057c8b /core/Command | |
parent | fce87f8ddb2d523a503051362a66b7453bc2329b (diff) | |
download | nextcloud-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.php | 2 |
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>'); } |