issue#120 issue#126 issue#130 - 'Object of class Closure could not be converted to string'

This commit is contained in:
Marcin Łojewski
2020-02-02 19:25:43 +01:00
parent 2fee2f340a
commit 683d44c98b
3 changed files with 10 additions and 6 deletions

View File

@@ -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]