Share.php 586 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. // use OCP namespace for all classes that are considered public.
  8. // This means that they should be used by apps instead of the internal Nextcloud classes
  9. namespace OCP;
  10. /**
  11. * This class remains only for use with the ::class namespace used for various hooks
  12. *
  13. * It provides the following hooks:
  14. * - post_shared
  15. * @since 5.0.0
  16. * @deprecated 17.0.0
  17. */
  18. class Share extends \OC\Share\Constants {
  19. }