diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-06-28 15:07:23 +0200 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-07-05 10:23:38 +0000 |
commit | 6efaf84cebd2c17a74975802c4e975a2b388a81e (patch) | |
tree | bdb4455e90b636b794f59dcfa5e3406b8a09e529 | |
parent | d119cb132a6d6d346850b7db61aa7ca5aee9e57e (diff) | |
download | nextcloud-server-6efaf84cebd2c17a74975802c4e975a2b388a81e.tar.gz nextcloud-server-6efaf84cebd2c17a74975802c4e975a2b388a81e.zip |
fix(ocp): Fix reference of dashboard IAPIWidget::getItems from WidgetItem
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | lib/public/Dashboard/Model/WidgetItem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Dashboard/Model/WidgetItem.php b/lib/public/Dashboard/Model/WidgetItem.php index 2bea9b93226..859a5652351 100644 --- a/lib/public/Dashboard/Model/WidgetItem.php +++ b/lib/public/Dashboard/Model/WidgetItem.php @@ -33,7 +33,7 @@ use JsonSerializable; * * This class is used by IAPIWidget interface. * It represents an widget item data that can be provided to clients via the Dashboard API - * @see IAPIWidget::getWidgetItems + * @see IAPIWidget::getItems * * @since 22.0.0 * |