aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-10-25 10:20:09 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-10-25 10:20:09 +0200
commit556e3c84e6c712e2974d6d35edb6abbdfe78dd9b (patch)
tree165617b1e2b83ee8d4a98ea4be2a70431f321472 /lib/public
parent4130a4cbd8e5bb4506ac30a19a91b088aa35dd24 (diff)
downloadnextcloud-server-556e3c84e6c712e2974d6d35edb6abbdfe78dd9b.tar.gz
nextcloud-server-556e3c84e6c712e2974d6d35edb6abbdfe78dd9b.zip
Fix return type for countUsers method
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
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();
}