mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 00:32:29 -04:00
22 lines
387 B
PHP
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 {
|
|
}
|