mirror of
https://github.com/nextcloud/server.git
synced 2025-02-21 23:56:55 +00:00
15 lines
255 B
PHP
15 lines
255 B
PHP
<?php
|
|
|
|
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 {}
|
|
}
|