aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Check.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/Command/Check.php')
-rw-r--r--core/Command/Check.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Check.php b/core/Command/Check.php
index b1faa784274..dcc9b089e1c 100644
--- a/core/Command/Check.php
+++ b/core/Command/Check.php
@@ -31,7 +31,7 @@ class Check extends Base {
$errors = \OC_Util::checkServer($this->config);
if (!empty($errors)) {
$errors = array_map(function ($item) {
- return (string) $item['error'];
+ return (string)$item['error'];
}, $errors);
$this->writeArrayInOutputFormat($input, $output, $errors);