diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-18 23:51:06 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-09-20 00:46:03 +0200 |
commit | a8f46af20f4fccac0257eba950e70d0da96c4a5a (patch) | |
tree | b3922576860114dac6747ed7fc98ab4360864b2d /lib/private/Share20/Share.php | |
parent | e7f8ab1c3b7bdbc6f34a62e5b5bbaa2f903f467b (diff) | |
download | nextcloud-server-a8f46af20f4fccac0257eba950e70d0da96c4a5a.tar.gz nextcloud-server-a8f46af20f4fccac0257eba950e70d0da96c4a5a.zip |
chore: Add proper deprecation dates where missing
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/private/Share20/Share.php')
-rw-r--r-- | lib/private/Share20/Share.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Share20/Share.php b/lib/private/Share20/Share.php index 1c0b21b8038..c1c13c77fa4 100644 --- a/lib/private/Share20/Share.php +++ b/lib/private/Share20/Share.php @@ -530,7 +530,7 @@ class Share implements IShare { * * @param int $parent * @return IShare - * @deprecated The new shares do not have parents. This is just here for legacy reasons. + * @deprecated 12.0.0 The new shares do not have parents. This is just here for legacy reasons. */ public function setParent($parent) { $this->parent = $parent; @@ -541,7 +541,7 @@ class Share implements IShare { * Get the parent of this share. * * @return int - * @deprecated The new shares do not have parents. This is just here for legacy reasons. + * @deprecated 12.0.0 The new shares do not have parents. This is just here for legacy reasons. */ public function getParent() { return $this->parent; |