aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/TagManager.php
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2024-09-06 09:44:04 +0200
committerprovokateurin <kate@provokateurin.de>2024-09-09 11:09:37 +0200
commit007be83a968e6aee649ff8de173163cb5ef93a86 (patch)
tree18e03c4a5562989bbd6482e9e6a47f3619b71e30 /lib/private/TagManager.php
parentfc10fa592626d154a91d77d35c93beabdc7605c1 (diff)
downloadnextcloud-server-fix/oc/inheritdoc.tar.gz
nextcloud-server-fix/oc/inheritdoc.zip
fix(OC): Remove doc blocks for OCP implementationsfix/oc/inheritdoc
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib/private/TagManager.php')
-rw-r--r--lib/private/TagManager.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/private/TagManager.php b/lib/private/TagManager.php
index f99653f2c05..2c4290da66b 100644
--- a/lib/private/TagManager.php
+++ b/lib/private/TagManager.php
@@ -35,19 +35,6 @@ class TagManager implements ITagManager, IEventListener {
$this->logger = $logger;
}
- /**
- * Create a new \OCP\ITags instance and load tags from db.
- *
- * @see \OCP\ITags
- * @param string $type The type identifier e.g. 'contact' or 'event'.
- * @param array $defaultTags An array of default tags to be used if none are stored.
- * @param boolean $includeShared Whether to include tags for items shared with this user by others.
- * @param string $userId user for which to retrieve the tags, defaults to the currently
- * logged in user
- * @return \OCP\ITags
- *
- * since 20.0.0 $includeShared isn't used anymore
- */
public function load($type, $defaultTags = [], $includeShared = false, $userId = null) {
if (is_null($userId)) {
$user = $this->userSession->getUser();