ISupportedApps.php 421 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Support\Subscription;
  8. /**
  9. * @since 17.0.0
  10. */
  11. interface ISupportedApps extends ISubscription {
  12. /**
  13. * Fetches the list of app IDs that are supported by the subscription
  14. *
  15. * @since 17.0.0
  16. */
  17. public function getSupportedApps(): array;
  18. }