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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/CommandController.php')
-rw-r--r--lib/Controller/CommandController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/CommandController.php b/lib/Controller/CommandController.php
index a64e2bc52..ab6696c59 100644
--- a/lib/Controller/CommandController.php
+++ b/lib/Controller/CommandController.php
@@ -52,7 +52,7 @@ class CommandController extends OCSController {
public function index(): DataResponse {
$commands = $this->commandService->findAll();
- $result = array_map(function(Command $command) {
+ $result = array_map(function (Command $command) {
return $command->asArray();
}, $commands);