fix: return type doc block added as per psalm

Signed-off-by: yemkareems <yemkareems@gmail.com>
This commit is contained in:
yemkareems 2024-07-04 19:13:41 +05:30
parent 0df1a29cf0
commit 53e3644ffb
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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;