diff options
Diffstat (limited to 'apps/updatenotification/lib/ResponseDefinitions.php')
-rw-r--r-- | apps/updatenotification/lib/ResponseDefinitions.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/updatenotification/lib/ResponseDefinitions.php b/apps/updatenotification/lib/ResponseDefinitions.php new file mode 100644 index 00000000000..754787ea2a7 --- /dev/null +++ b/apps/updatenotification/lib/ResponseDefinitions.php @@ -0,0 +1,19 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OCA\UpdateNotification; + +/** + * @psalm-type UpdateNotificationApp = array{ + * appId: string, + * appName: string, + * } + */ +class ResponseDefinitions { +} |