aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-10-19 10:35:49 +0200
committerAndy Scherzinger <info@andy-scherzinger.de>2023-12-06 00:08:29 +0100
commita9d86c1f95a013d37be90a1974545b377de0c7e7 (patch)
tree788eb06541c804c720655670f0af085d5883bca2 /lib
parente32d38375a578e063b80f43c81afe5aa27dfcb1c (diff)
downloadnextcloud-server-a9d86c1f95a013d37be90a1974545b377de0c7e7.tar.gz
nextcloud-server-a9d86c1f95a013d37be90a1974545b377de0c7e7.zip
Invert parameter order in getDisabledUserList to be consistent
This matches what was done in the calls and so fixes getting disabled user list when there are several backends returning disabled users. Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> (cherry picked from commit 85e7887e0764a9347bbbb10812459d95ccdfa6d4)
Diffstat (limited to 'lib')
-rw-r--r--lib/public/User/Backend/IProvideEnabledStateBackend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/User/Backend/IProvideEnabledStateBackend.php b/lib/public/User/Backend/IProvideEnabledStateBackend.php
index d03beacd7b8..f12d99fd1a6 100644
--- a/lib/public/User/Backend/IProvideEnabledStateBackend.php
+++ b/lib/public/User/Backend/IProvideEnabledStateBackend.php
@@ -52,5 +52,5 @@ interface IProvideEnabledStateBackend {
*
* @return string[]
*/
- public function getDisabledUserList(int $offset = 0, ?int $limit = null): array;
+ public function getDisabledUserList(?int $limit = null, int $offset = 0): array;
}