Fix fake manager

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/30794/head
Joas Schilling 4 years ago
parent 1ceba64863
commit 429380337f
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
  1. 12
      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 = '') {
}

Loading…
Cancel
Save