diff options
author | Robin Appelman <robin@icewind.nl> | 2017-03-30 10:44:05 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-03-30 12:48:34 +0200 |
commit | 2a4d9f71af848410b375acf35e4d6e8397690216 (patch) | |
tree | 8a7a2b7672068051fd9dd3678250643bea08df5c /tests | |
parent | 40154dd6a36bd052db6a0a6c9667bc915dfd5f87 (diff) | |
download | nextcloud-server-2a4d9f71af848410b375acf35e4d6e8397690216.tar.gz nextcloud-server-2a4d9f71af848410b375acf35e4d6e8397690216.zip |
update FakeManager
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Comments/FakeManager.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/lib/Comments/FakeManager.php b/tests/lib/Comments/FakeManager.php index dfb8f21b64b..840961fb901 100644 --- a/tests/lib/Comments/FakeManager.php +++ b/tests/lib/Comments/FakeManager.php @@ -1,6 +1,7 @@ <?php namespace Test\Comments; +use OCP\IUser; /** * Class FakeManager @@ -44,4 +45,6 @@ class FakeManager implements \OCP\Comments\ICommentsManager { public function registerDisplayNameResolver($type, \Closure $closure) {} public function resolveDisplayName($type, $id) {} + + public function getNumberOfUnreadCommentsForFolder($folderId, IUser $user) {} } |