diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-15 18:51:52 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-15 18:51:52 +0100 |
commit | f07d75a4dda0b6c6de126561d74da6e5a449fb99 (patch) | |
tree | cb75ffb30267c227544623a5893b8e3249bb33f0 /lib/public/Share | |
parent | b775d935f2098e875c12e3ccb631d01f0c69f828 (diff) | |
download | nextcloud-server-f07d75a4dda0b6c6de126561d74da6e5a449fb99.tar.gz nextcloud-server-f07d75a4dda0b6c6de126561d74da6e5a449fb99.zip |
@since 9.2.0 to @since 11.0.0
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/Share')
-rw-r--r-- | lib/public/Share/IManager.php | 4 | ||||
-rw-r--r-- | lib/public/Share/IProviderFactory.php | 2 | ||||
-rw-r--r-- | lib/public/Share/IShareProvider.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php index e8b123cafb6..a15020bbd69 100644 --- a/lib/public/Share/IManager.php +++ b/lib/public/Share/IManager.php @@ -95,7 +95,7 @@ interface IManager { * @param Folder $node * @param bool $reshares * @return IShare[][] [$fileId => IShare[], ...] - * @since 9.2.0 + * @since 11.0.0 */ public function getSharesInFolder($userId, Folder $node, $reshares = false); @@ -290,7 +290,7 @@ interface IManager { * Check if a given share provider exists * @param int $shareType * @return bool - * @since 9.2.0 + * @since 11.0.0 */ public function shareProviderExists($shareType); diff --git a/lib/public/Share/IProviderFactory.php b/lib/public/Share/IProviderFactory.php index 928298a7860..7227fdea1f1 100644 --- a/lib/public/Share/IProviderFactory.php +++ b/lib/public/Share/IProviderFactory.php @@ -58,7 +58,7 @@ interface IProviderFactory { /** * @return IShareProvider[] - * @since 9.2.0 + * @since 11.0.0 */ public function getAllProviders(); } diff --git a/lib/public/Share/IShareProvider.php b/lib/public/Share/IShareProvider.php index 7d134583317..6257c97eb77 100644 --- a/lib/public/Share/IShareProvider.php +++ b/lib/public/Share/IShareProvider.php @@ -99,7 +99,7 @@ interface IShareProvider { * @param Folder $node * @param bool $reshares Also get the shares where $user is the owner instead of just the shares where $user is the initiator * @return \OCP\Share\IShare[] - * @since 9.2.0 + * @since 11.0.0 */ public function getSharesInFolder($userId, Folder $node, $reshares); |