Skip to content

Commit

Permalink
fix: return type doc block added as per psalm
Browse files Browse the repository at this point in the history
Signed-off-by: yemkareems <yemkareems@gmail.com>
  • Loading branch information
yemkareems committed Jul 4, 2024
1 parent abd2441 commit 839b5d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/private/AllConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ public function getUsersForUserValue($appName, $key, $value) {
* @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
Expand Down
2 changes: 1 addition & 1 deletion lib/public/IConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public function getUsersForUserValue($appName, $key, $value);
* @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;
Expand Down

0 comments on commit 839b5d0

Please sign in to comment.