Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2020-10-28 16:10:03 +0300
committerJoas Schilling <coding@schilljs.com>2020-10-28 23:51:53 +0300
commit3caa7ca676c6022ce36bd09bfb2cfafe079da146 (patch)
treed20b9dd2a3657799e2fb3f5e77a1ca0efed1af16 /lib/Notification
parentf65863f70aa9c73ecb06a78a3b4134b3cfbd2617 (diff)
Add a stub for the comments manager to clarify it's defined methods
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Notification')
-rw-r--r--lib/Notification/Notifier.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index 2c5bd965b..a6a6e5be5 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -32,6 +32,7 @@ use OCA\Talk\GuestManager;
use OCA\Talk\Manager;
use OCA\Talk\Participant;
use OCA\Talk\Room;
+use OCP\Comments\ICommentsManager;
use OCP\Comments\NotFoundException;
use OCP\IL10N;
use OCP\IURLGenerator;
@@ -66,7 +67,7 @@ class Notifier implements INotifier {
protected $manager;
/** @var INotificationManager */
protected $notificationManager;
- /** @var CommentsManager */
+ /** @var ICommentsManager */
protected $commentManager;
/** @var MessageParser */
protected $messageParser;