You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }