diff options
author | yemkareems <yemkareems@gmail.com> | 2024-07-04 18:38:03 +0530 |
---|---|---|
committer | yemkareems <yemkareems@gmail.com> | 2024-07-08 15:42:55 +0530 |
commit | 0df1a29cf0583c249db3b440e7a44b2033d93bc5 (patch) | |
tree | 3bf4496133ebb1a851e1464d9c93bf1fe8a75073 /lib | |
parent | 3dee8a213db5cb44a5c37e14cf71d82182aa54e9 (diff) | |
download | nextcloud-server-0df1a29cf0583c249db3b440e7a44b2033d93bc5.tar.gz nextcloud-server-0df1a29cf0583c249db3b440e7a44b2033d93bc5.zip |
fix: return type doc block added as per psalm
Signed-off-by: yemkareems <yemkareems@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/AllConfig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AllConfig.php b/lib/private/AllConfig.php index 0d7973ab0e5..b1b23ce1dd1 100644 --- a/lib/private/AllConfig.php +++ b/lib/private/AllConfig.php @@ -497,7 +497,7 @@ class AllConfig implements IConfig { * @param int|null $limit how many users to fetch * @param int $offset from which offset to fetch * @param string $search search users based on search params - * @return array of user IDs + * @return list<string> list of user IDs */ public function getLastLoggedInUsers(?int $limit = null, int $offset = 0, string $search = ''): array { // TODO - FIXME |