From 429380337fc33e61742507023d190d68be732594 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 21 Jan 2022 14:02:34 +0100 Subject: [PATCH] Fix fake manager Signed-off-by: Joas Schilling --- tests/lib/Comments/FakeManager.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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 = '') { } -- 2.39.5