aboutsummaryrefslogtreecommitdiffstats
path: root/build/stubs/app_api.php
blob: 736a5b9ac6b7f946b4f0cb97d337139936fe91ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\AppAPI\Service;

use OCP\IRequest;

class AppAPIService {
	/**
	 * @param IRequest $request
	 * @param bool $isDav
	 *
	 * @return bool
	 */
	public function validateExAppRequestToNC(IRequest $request, bool $isDav = false): bool {}
}