ICommand.php 353 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCP\Command;
  8. /**
  9. * Interface ICommand
  10. *
  11. * @since 8.1.0
  12. */
  13. interface ICommand {
  14. /**
  15. * Run the command
  16. * @since 8.1.0
  17. */
  18. public function handle();
  19. }