ICapabilitiesApi.php 416 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\Remote\Api;
  7. /**
  8. * @since 13.0.0
  9. * @deprecated 23.0.0
  10. */
  11. interface ICapabilitiesApi {
  12. /**
  13. * @return array The capabilities in the form of [$appId => [$capability => $value]]
  14. *
  15. * @since 13.0.0
  16. * @deprecated 23.0.0
  17. */
  18. public function getCapabilities();
  19. }