From cccdfaa6e9e1ac02193ecfb9d253462fc3320d05 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 19 Apr 2018 17:12:07 +0200 Subject: [PATCH] Fix FakeManager Signed-off-by: Joas Schilling --- tests/lib/Comments/FakeManager.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/lib/Comments/FakeManager.php b/tests/lib/Comments/FakeManager.php index d3dd1dfb58..3ba66e9669 100644 --- a/tests/lib/Comments/FakeManager.php +++ b/tests/lib/Comments/FakeManager.php @@ -22,6 +22,14 @@ class FakeManager implements ICommentsManager { \DateTime $notOlderThan = null ) {} + public function getForObjectSince( + string $objectType, + string $objectId, + int $lastKnownCommentId, + string $sortDirection = 'asc', + int $limit = 30 + ): array { return []; } + public function getNumberOfCommentsForObject($objectType, $objectId, \DateTime $notOlderThan = null) {} public function create($actorType, $actorId, $objectType, $objectId) {}