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

github.com/nextcloud/user_sql.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Backend/UserBackend.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Backend/UserBackend.php b/lib/Backend/UserBackend.php
index 22dc213..a97e095 100644
--- a/lib/Backend/UserBackend.php
+++ b/lib/Backend/UserBackend.php
@@ -437,11 +437,10 @@ final class UserBackend extends ABackend implements
/**
* @inheritdoc
*/
- public function getUsers(
- $search = "", $limit = null, $offset = null, $callback = null
- ) {
+ public function getUsers($search = "", $limit = null, $offset = null, $callback = null)
+ {
$this->logger->debug(
- "Entering getUsers($search, $limit, $offset, $callback)",
+ "Entering getUsers($search, $limit, $offset)",
["app" => $this->appName]
);
@@ -478,7 +477,7 @@ final class UserBackend extends ABackend implements
$this->cache->set($cacheKey, $users);
$this->logger->debug(
- "Returning getUsers($search, $limit, $offset, $callback): count("
+ "Returning getUsers($search, $limit, $offset): count("
. count(
$users
) . ")", ["app" => $this->appName]