diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2018-07-31 12:05:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 12:05:52 +0200 |
commit | c39bc1638b812ef9660cfdb0ab6ca58d70ad68d8 (patch) | |
tree | 89d02b4ccbb646b253fdad1155a68ffe31530528 /tests | |
parent | ef85ef07863cb6aa385d571eaee9037448f8520d (diff) | |
parent | 66945f95749adcb4670a82156edc376dc4aa5b93 (diff) | |
download | nextcloud-server-c39bc1638b812ef9660cfdb0ab6ca58d70ad68d8.tar.gz nextcloud-server-c39bc1638b812ef9660cfdb0ab6ca58d70ad68d8.zip |
Merge pull request #10444 from nextcloud/feature/noid/allow-to-filter-unread-count-by-verb
Allow to filter the unread count by verb
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Comments/FakeManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Comments/FakeManager.php b/tests/lib/Comments/FakeManager.php index e758a951e8b..9078226afb5 100644 --- a/tests/lib/Comments/FakeManager.php +++ b/tests/lib/Comments/FakeManager.php @@ -30,7 +30,7 @@ class FakeManager implements ICommentsManager { int $limit = 30 ): array { return []; } - public function getNumberOfCommentsForObject($objectType, $objectId, \DateTime $notOlderThan = null) {} + public function getNumberOfCommentsForObject($objectType, $objectId, \DateTime $notOlderThan = null, $verb = '') {} public function search(string $search, string $objectType, string $objectId, string $verb, int $offset, int $limit = 50): array { return []; |