Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 b225aff61ed..234b038084b 100644
--- a/core/Command/Check.php
+++ b/core/Command/Check.php
@@ -52,7 +52,7 @@ class Check extends Base {
protected function execute(InputInterface $input, OutputInterface $output) {
$errors = \OC_Util::checkServer($this->config);
if (!empty($errors)) {
- $errors = array_map(function($item) {
+ $errors = array_map(function ($item) {
return (string) $item['error'];
}, $errors);