Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-04-19 18:10:03 +0300
committerJoas Schilling <coding@schilljs.com>2018-04-19 18:10:03 +0300
commit5157349b699a46eee2f84247f90b1f155ba40cd5 (patch)
tree8ebf1e10ea9ae6ecfdd0350cb92acd13f13527a1 /lib/public/Comments
parentf50abde7ac99fd6f7563fb60b662ca21ac320f34 (diff)
Fix docs
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Comments')
-rw-r--r--lib/public/Comments/ICommentsManager.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/public/Comments/ICommentsManager.php b/lib/public/Comments/ICommentsManager.php
index 888e7df3e7f..b3ed176b3b5 100644
--- a/lib/public/Comments/ICommentsManager.php
+++ b/lib/public/Comments/ICommentsManager.php
@@ -121,12 +121,13 @@ interface ICommentsManager {
);
/**
- * @param string $objectType
- * @param string $objectId
- * @param int $lastKnownCommentId
- * @param string $sortDirection
- * @param int $limit
- * @return array
+ * @param string $objectType the object type, e.g. 'files'
+ * @param string $objectId the id of the object
+ * @param int $lastKnownCommentId the last known comment (will be used as offset)
+ * @param string $sortDirection direction of the comments (`asc` or `desc`)
+ * @param int $limit optional, number of maximum comments to be returned. if
+ * set to 0, all comments are returned.
+ * @return IComment[]
* @since 14.0.0
*/
public function getForObjectSince(