0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-15 08:45:21 +00:00
nextcloud_server/lib/public/Share.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
586 B
PHP
Raw Normal View History

2012-10-14 19:04:08 +00:00
<?php
2012-10-14 19:04:08 +00:00
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
2013-11-03 12:38:25 +00:00
// use OCP namespace for all classes that are considered public.
// This means that they should be used by apps instead of the internal Nextcloud classes
2012-10-14 19:04:08 +00:00
namespace OCP;
/**
* This class remains only for use with the ::class namespace used for various hooks
2013-10-31 18:00:53 +00:00
*
* It provides the following hooks:
* - post_shared
* @since 5.0.0
* @deprecated 17.0.0
2013-10-31 18:00:53 +00:00
*/
class Share extends \OC\Share\Constants {
2012-10-14 19:04:08 +00:00
}