aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2022-12-20 16:48:07 +0100
committerGitHub <noreply@github.com>2022-12-20 16:48:07 +0100
commitf6ff717b56ac9fa69e60991e982dfdd4c26a95f3 (patch)
treee2095fcda4ff53d33a91bfd983d8f9d78a83a89e /lib/public
parent1db0ddee3beb1c41016388cd3d11cf0232f6030d (diff)
parent341dda1de618ee76a1e617cc4c15267c120d32c3 (diff)
downloadnextcloud-server-f6ff717b56ac9fa69e60991e982dfdd4c26a95f3.tar.gz
nextcloud-server-f6ff717b56ac9fa69e60991e982dfdd4c26a95f3.zip
Merge pull request #34772 from nextcloud/fix/clean-ldap-access-factory-usage
Make sure to use AccessFactory to create Access instances and use DI
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/User/Backend/ICountUsersBackend.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/public/User/Backend/ICountUsersBackend.php b/lib/public/User/Backend/ICountUsersBackend.php
index 52f947a654d..685de48d889 100644
--- a/lib/public/User/Backend/ICountUsersBackend.php
+++ b/lib/public/User/Backend/ICountUsersBackend.php
@@ -29,11 +29,10 @@ namespace OCP\User\Backend;
* @since 14.0.0
*/
interface ICountUsersBackend {
-
/**
* @since 14.0.0
*
- * @return int|bool The number of users on success false on failure
+ * @return int|false The number of users on success false on failure
*/
public function countUsers();
}