ISystemMountPoint.php 475 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Files\Mount;
  8. /**
  9. * Mark a mountpoint as containing system data, meaning that the data is not user specific
  10. *
  11. * Example use case is signaling to the encryption wrapper that system-wide keys should be used for a mountpoint
  12. *
  13. * @since 25.0.0
  14. */
  15. interface ISystemMountPoint extends IMountPoint {
  16. }