ISharedStorage.php 369 B

123456789101112131415
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OCA\Files_Sharing;
  8. use OCP\Files\Storage\IStorage;
  9. /**
  10. * @deprecated 30.0.0 use `\OCP\Files\Storage\ISharedStorage` instead
  11. */
  12. interface ISharedStorage extends IStorage {
  13. }