diff options
author | Joas Schilling <coding@schilljs.com> | 2023-08-22 13:15:13 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-08-22 13:15:13 +0200 |
commit | 900439ea42cd9e100d3edbb26987471152e0b4e3 (patch) | |
tree | 2d631bdfca8ff84805057760c79b6ef0ab6c4ed1 /apps/dashboard | |
parent | c166fa016121ce91530ddd2dbec5dd0c835431ec (diff) | |
download | nextcloud-server-900439ea42cd9e100d3edbb26987471152e0b4e3.tar.gz nextcloud-server-900439ea42cd9e100d3edbb26987471152e0b4e3.zip |
Fix(CI): Satisfy old psalm by being less specific
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dashboard')
-rw-r--r-- | apps/dashboard/lib/Controller/DashboardApiController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dashboard/lib/Controller/DashboardApiController.php b/apps/dashboard/lib/Controller/DashboardApiController.php index 0b2b05e0df6..deacbd0a284 100644 --- a/apps/dashboard/lib/Controller/DashboardApiController.php +++ b/apps/dashboard/lib/Controller/DashboardApiController.php @@ -123,7 +123,7 @@ class DashboardApiController extends OCSController { * @param array<string, string> $sinceIds Array indexed by widget Ids, contains date/id from which we want the new items * @param int $limit Limit number of result items per widget * @param string[] $widgets Limit results to specific widgets - * @return DataResponse<Http::STATUS_OK, array<string, DashboardWidgetItems>, array{}> + * @return DataResponse */ public function getWidgetItemsV2(array $sinceIds = [], int $limit = 7, array $widgets = []): DataResponse { $items = []; |