mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 19:20:35 -04:00
fix: return type doc block added as per psalm
Signed-off-by: yemkareems <yemkareems@gmail.com>
This commit is contained in:
parent
0df1a29cf0
commit
53e3644ffb
2 changed files with 2 additions and 2 deletions
|
|
@ -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 list<string> list of user IDs
|
||||
* @return array<string, string> list of user IDs
|
||||
*/
|
||||
public function getLastLoggedInUsers(?int $limit = null, int $offset = 0, string $search = ''): array {
|
||||
// TODO - FIXME
|
||||
|
|
|
|||
|
|
@ -256,7 +256,7 @@ interface IConfig {
|
|||
* @param int|null $limit how many records to fetch
|
||||
* @param int $offset from which offset to fetch
|
||||
* @param string $search search users based on search params
|
||||
* @return list<string> list of user IDs
|
||||
* @return array<string, string> list of user IDs
|
||||
* @since 30.0.0
|
||||
*/
|
||||
public function getLastLoggedInUsers(?int $limit = null, int $offset = 0, string $search = ''): array;
|
||||
|
|
|
|||
Loading…
Reference in a new issue