diff options
Diffstat (limited to 'lib/private/Repair.php')
-rw-r--r-- | lib/private/Repair.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Repair.php b/lib/private/Repair.php index e80d6ec7874..e042ca193cf 100644 --- a/lib/private/Repair.php +++ b/lib/private/Repair.php @@ -93,7 +93,7 @@ class Repair implements IOutput { */ public function run() { if (count($this->repairSteps) === 0) { - $this->emit('\OC\Repair', 'info', array('No repair steps available')); + $this->emit('\OC\Repair', 'info', ['No repair steps available']); return; } @@ -207,7 +207,7 @@ class Repair implements IOutput { public function info($string) { // for now just emit as we did in the past - $this->emit('\OC\Repair', 'info', array($string)); + $this->emit('\OC\Repair', 'info', [$string]); } /** |