Fix FakeManager
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
5157349b69
commit
cccdfaa6e9
|
@ -22,6 +22,14 @@ class FakeManager implements ICommentsManager {
|
||||||
\DateTime $notOlderThan = null
|
\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 getNumberOfCommentsForObject($objectType, $objectId, \DateTime $notOlderThan = null) {}
|
||||||
|
|
||||||
public function create($actorType, $actorId, $objectType, $objectId) {}
|
public function create($actorType, $actorId, $objectType, $objectId) {}
|
||||||
|
|
Loading…
Reference in New Issue