nextcloud/apps/webhooks/lib/ResponseDefinitions.php
Côme Chilliet aa974a4322 feat: Add webhooks application
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2024-06-11 14:10:29 +02:00

22 lines
387 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Webhooks;
/**
* @psalm-type WebhooksListenerInfo = array{
* id: string,
* userId: string,
* httpMethod: string,
* uri: string,
* event?: string,
* }
*/
class ResponseDefinitions {
}