diff options
author | Joas Schilling <coding@schilljs.com> | 2022-01-21 14:02:34 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-01-21 14:02:34 +0100 |
commit | 429380337fc33e61742507023d190d68be732594 (patch) | |
tree | be9367c85a30965e1c1abb443d63f83ac1d3b0e9 /tests | |
parent | 1ceba648635024c7b198d29239e23595347e7685 (diff) | |
download | nextcloud-server-429380337fc33e61742507023d190d68be732594.tar.gz nextcloud-server-429380337fc33e61742507023d190d68be732594.zip |
Fix fake manager
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Comments/FakeManager.php | 12 |
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 = '') { } |