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 <213943+nickvergessen@users.noreply.github.com>2022-01-05 15:44:07 +0300
committerGitHub <noreply@github.com>2022-01-05 15:44:07 +0300
commit773c4079653e3ce804d19de0261037405c7756e6 (patch)
tree3204294065236fbf8623340b252d4cc374ddb1f5 /tests
parentf9b06def78c60e92c2128a9e1b38074986ff78c6 (diff)
parent03abaaaee5759e7e01e414fcbab106c7983a6221 (diff)
Merge pull request #29921 from nextcloud/feature/noid/allow-to-count-commments-with-multiple-verbs
Allow to count comments with multiple verbs
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;
}