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-05 13:53:33 +0300
committerJoas Schilling <coding@schilljs.com>2022-01-05 13:53:33 +0300
commit03abaaaee5759e7e01e414fcbab106c7983a6221 (patch)
treed08739a1ed58ed47891629e50aba2bae72f01fcb /tests
parent2166cfde9ec1296bbdcf7d3a6cee83d2b52be853 (diff)
Fix unit tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/Comments/FakeManager.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/Comments/FakeManager.php b/tests/lib/Comments/FakeManager.php
index 2434945762c..4904fd15501 100644
--- a/tests/lib/Comments/FakeManager.php
+++ b/tests/lib/Comments/FakeManager.php
@@ -101,6 +101,10 @@ class FakeManager implements ICommentsManager {
return 0;
}
+ public function getNumberOfCommentsWithVerbsForObjectSinceComment(string $objectType, string $objectId, int $lastRead, array $verbs): int {
+ return 0;
+ }
+
public function getLastCommentBeforeDate(string $objectType, string $objectId, \DateTime $beforeDate, string $verb = ''): int {
return 0;
}