diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2022-01-05 13:44:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-05 13:44:07 +0100 |
commit | 773c4079653e3ce804d19de0261037405c7756e6 (patch) | |
tree | 3204294065236fbf8623340b252d4cc374ddb1f5 /tests | |
parent | f9b06def78c60e92c2128a9e1b38074986ff78c6 (diff) | |
parent | 03abaaaee5759e7e01e414fcbab106c7983a6221 (diff) | |
download | nextcloud-server-773c4079653e3ce804d19de0261037405c7756e6.tar.gz nextcloud-server-773c4079653e3ce804d19de0261037405c7756e6.zip |
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.php | 4 |
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; } |