IDisableEncryptionStorage.php 313 B

1234567891011121314
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\Files\Storage;
  7. /**
  8. * Marks that a storage does not support server side encryption
  9. *
  10. * @since 16.0.0
  11. */
  12. interface IDisableEncryptionStorage extends IStorage {
  13. }