mirror of
https://github.com/nextcloud/server.git
synced 2025-08-22 19:41:14 +00:00
19 lines
383 B
PHP
19 lines
383 B
PHP
<?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 {}
|
|
}
|