diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-07-30 18:35:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 18:35:16 +0200 |
commit | cef675358b202f6504a2883ca6502434c19d8f26 (patch) | |
tree | 4df530c773d5811a5012250266b5531c6c138757 /lib/public | |
parent | b5bc4f31cf2b97ad08457fff92fbddcfd58153ee (diff) | |
parent | 3d136e44661a6628c8276d4708316421ed88902f (diff) | |
download | nextcloud-server-cef675358b202f6504a2883ca6502434c19d8f26.tar.gz nextcloud-server-cef675358b202f6504a2883ca6502434c19d8f26.zip |
Merge pull request #46099 from nextcloud/fix/properly-add-accept-share-interface
fix: Add `acceptShare` as an interface
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Share/IShareProvider.php | 10 | ||||
-rw-r--r-- | lib/public/Share/IShareProviderSupportsAccept.php | 27 | ||||
-rw-r--r-- | lib/public/Share/IShareProviderWithNotification.php | 5 |
3 files changed, 29 insertions, 13 deletions
diff --git a/lib/public/Share/IShareProvider.php b/lib/public/Share/IShareProvider.php index c51bad8f9ef..9d7c8013a36 100644 --- a/lib/public/Share/IShareProvider.php +++ b/lib/public/Share/IShareProvider.php @@ -45,16 +45,6 @@ interface IShareProvider { public function update(\OCP\Share\IShare $share); /** - * Accept a share. - * - * @param IShare $share - * @param string $recipient - * @return IShare The share object - * @since 17.0.0 - */ - // public function acceptShare(IShare $share, string $recipient): IShare; - - /** * Delete a share * * @param \OCP\Share\IShare $share diff --git a/lib/public/Share/IShareProviderSupportsAccept.php b/lib/public/Share/IShareProviderSupportsAccept.php new file mode 100644 index 00000000000..c3a0c2d0218 --- /dev/null +++ b/lib/public/Share/IShareProviderSupportsAccept.php @@ -0,0 +1,27 @@ +<?php + +/** + * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCP\Share; + +/** + * Interface IShareProviderSupportsAccept + * + * This interface allows to define IShareProvider that can handle the `acceptShare` method, + * which is available since Nextcloud 17. + * + * @since 30.0.0 + */ +interface IShareProviderSupportsAccept extends IShareProvider { + /** + * Accept a share. + * + * @param IShare $share + * @param string $recipient + * @return IShare The share object + * @since 30.0.0 + */ + public function acceptShare(IShare $share, string $recipient): IShare; +} diff --git a/lib/public/Share/IShareProviderWithNotification.php b/lib/public/Share/IShareProviderWithNotification.php index afd1429c1f0..c2ba8118175 100644 --- a/lib/public/Share/IShareProviderWithNotification.php +++ b/lib/public/Share/IShareProviderWithNotification.php @@ -1,9 +1,8 @@ <?php /** - * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors - * SPDX-FileCopyrightText: 2016 ownCloud, Inc. - * SPDX-License-Identifier: AGPL-3.0-only + * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later */ namespace OCP\Share; |