aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-12-09 13:19:14 +0100
committerJulius Härtl <jus@bitgrid.net>2020-12-09 15:51:41 +0100
commitc4ea37b8a102adec16cf13085dba2fd7ef893195 (patch)
treea0b23e125a6e952ae1568a81bdd7b0d794f8443d /lib
parent676d2b7a947754f4c42405b513658a5f6663673c (diff)
downloadnextcloud-server-c4ea37b8a102adec16cf13085dba2fd7ef893195.tar.gz
nextcloud-server-c4ea37b8a102adec16cf13085dba2fd7ef893195.zip
Address minor comments
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Share/Constants.php3
-rw-r--r--lib/public/Share/IShare.php3
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/private/Share/Constants.php b/lib/private/Share/Constants.php
index 0ba68428c87..77ed3176277 100644
--- a/lib/private/Share/Constants.php
+++ b/lib/private/Share/Constants.php
@@ -71,9 +71,10 @@ class Constants {
public const SHARE_TYPE_ROOM = 10;
// const SHARE_TYPE_USERROOM = 11; // Internal type used by RoomShareProvider
/**
- * @deprecated 21.0.0 - use IShare::TYPE_ROOM instead
+ * @deprecated 21.0.0 - use IShare::TYPE_DECK instead
*/
public const SHARE_TYPE_DECK = 12;
+ // const SHARE_TYPE_DECK_USER = 13; // Internal type used by DeckShareProvider
public const FORMAT_NONE = -1;
public const FORMAT_STATUSES = -2;
diff --git a/lib/public/Share/IShare.php b/lib/public/Share/IShare.php
index 4bd290d66c8..86aceba80f5 100644
--- a/lib/public/Share/IShare.php
+++ b/lib/public/Share/IShare.php
@@ -111,7 +111,8 @@ interface IShare {
public const TYPE_DECK = 12;
/**
- * @internal 21.00
+ * @internal
+ * @since 21.0.0
*/
public const TYPE_DECK_USER = 13;