1
0

IUrl.php 415 B

123456789101112131415161718192021222324
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\WorkflowEngine\EntityContext;
  8. /**
  9. * Interface IUrl
  10. *
  11. *
  12. * @since 18.0.0
  13. */
  14. interface IUrl {
  15. /**
  16. * returns a URL that is related to the entity, e.g. the link to a share
  17. *
  18. * @since 18.0.0
  19. */
  20. public function getUrl(): string;
  21. }