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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-14 18:53:44 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-14 18:53:44 +0300
commit833d1d2c3b12b36332ee342e3c228191fb96b4c3 (patch)
treefab82272fecdd58111e54284b7ea379d8f46506f /apps/provisioning_api
parentc9980ed099d820f56c2c50151af8fd0af0135d77 (diff)
Fix php-cs formatting
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/provisioning_api')
-rw-r--r--apps/provisioning_api/tests/Controller/GroupsControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/provisioning_api/tests/Controller/GroupsControllerTest.php b/apps/provisioning_api/tests/Controller/GroupsControllerTest.php
index 34bcdd4e645..72f0cd5537b 100644
--- a/apps/provisioning_api/tests/Controller/GroupsControllerTest.php
+++ b/apps/provisioning_api/tests/Controller/GroupsControllerTest.php
@@ -558,7 +558,7 @@ class GroupsControllerTest extends \Test\TestCase {
$this->userManager->expects($this->any())
->method('get')
- ->willReturnCallback(function(string $uid) use ($users) {
+ ->willReturnCallback(function (string $uid) use ($users) {
return isset($users[$uid]) ? $users[$uid] : null;
});