aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Http/WellKnown/IResponse.php
blob: 2cf63043b6360778f8072b2221f526bba008df7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCP\Http\WellKnown;

use OCP\AppFramework\Http\Response;

/**
 * @since 21.0.0
 */
interface IResponse {
	/**
	 * @since 21.0.0
	 */
	public function toHttpResponse(): Response;
}