選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

app_api.php 255B

123456789101112131415
  1. <?php
  2. namespace OCA\AppAPI\Service;
  3. use OCP\IRequest;
  4. class AppAPIService {
  5. /**
  6. * @param IRequest $request
  7. * @param bool $isDav
  8. *
  9. * @return bool
  10. */
  11. public function validateExAppRequestToNC(IRequest $request, bool $isDav = false): bool {}
  12. }