mirror of
https://github.com/nextcloud/server.git
synced 2026-03-20 17:43:15 -04:00
15 lines
271 B
PHP
15 lines
271 B
PHP
<?php
|
|
|
|
namespace OCA\AppEcosystemV2\Service;
|
|
|
|
use OCP\IRequest;
|
|
|
|
class AppEcosystemV2Service {
|
|
/**
|
|
* @param IRequest $request
|
|
* @param bool $isDav
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function validateExAppRequestToNC(IRequest $request, bool $isDav = false): bool {}
|
|
}
|