Fix FakeManager

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/9129/head
Joas Schilling 8 years ago
parent 5157349b69
commit cccdfaa6e9
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
  1. 8
      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) {}

Loading…
Cancel
Save