ICachedMountFileInfo.php 533 B

123456789101112131415161718192021222324252627
  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\Files\Config;
  7. /**
  8. * Holds information about a mount for a user
  9. *
  10. * @since 13.0.0
  11. */
  12. interface ICachedMountFileInfo extends ICachedMountInfo {
  13. /**
  14. * Return the path for the file within the cached mount
  15. *
  16. * @return string
  17. * @since 13.0.0
  18. */
  19. public function getInternalPath(): string;
  20. /**
  21. * @return string
  22. * @since 13.0.0
  23. */
  24. public function getPath(): string;
  25. }