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
path: root/tests
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-01-21 16:02:34 +0300
committerJoas Schilling <coding@schilljs.com>2022-01-21 16:02:34 +0300
commit429380337fc33e61742507023d190d68be732594 (patch)
treebe9367c85a30965e1c1abb443d63f83ac1d3b0e9 /tests
parent1ceba648635024c7b198d29239e23595347e7685 (diff)
Fix fake manager
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Comments/FakeManager.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/lib/Comments/FakeManager.php b/tests/lib/Comments/FakeManager.php
index 4904fd15501..fbd13bd5193 100644
--- a/tests/lib/Comments/FakeManager.php
+++ b/tests/lib/Comments/FakeManager.php
@@ -36,6 +36,18 @@ class FakeManager implements ICommentsManager {
return [];
}
+ public function getCommentsWithVerbForObjectSinceComment(
+ string $objectType,
+ string $objectId,
+ array $verbs,
+ int $lastKnownCommentId,
+ string $sortDirection = 'asc',
+ int $limit = 30,
+ bool $includeLastKnown = false
+ ): array {
+ return [];
+ }
+
public function getNumberOfCommentsForObject($objectType, $objectId, \DateTime $notOlderThan = null, $verb = '') {
}