diff options
author | Joas Schilling <coding@schilljs.com> | 2022-01-05 11:53:33 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-01-05 11:53:33 +0100 |
commit | 03abaaaee5759e7e01e414fcbab106c7983a6221 (patch) | |
tree | d08739a1ed58ed47891629e50aba2bae72f01fcb /tests/lib | |
parent | 2166cfde9ec1296bbdcf7d3a6cee83d2b52be853 (diff) | |
download | nextcloud-server-03abaaaee5759e7e01e414fcbab106c7983a6221.tar.gz nextcloud-server-03abaaaee5759e7e01e414fcbab106c7983a6221.zip |
Fix unit tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib')
-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; } |