summaryrefslogtreecommitdiffstats
path: root/apps/comments/lib/Notification/Notifier.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/comments/lib/Notification/Notifier.php')
-rw-r--r--apps/comments/lib/Notification/Notifier.php19
1 files changed, 5 insertions, 14 deletions
diff --git a/apps/comments/lib/Notification/Notifier.php b/apps/comments/lib/Notification/Notifier.php
index 745cb513978..7c6a40133ee 100644
--- a/apps/comments/lib/Notification/Notifier.php
+++ b/apps/comments/lib/Notification/Notifier.php
@@ -38,20 +38,11 @@ use OCP\Notification\INotifier;
class Notifier implements INotifier {
- /** @var IFactory */
- protected $l10nFactory;
-
- /** @var IRootFolder */
- protected $rootFolder;
-
- /** @var ICommentsManager */
- protected $commentsManager;
-
- /** @var IURLGenerator */
- protected $url;
-
- /** @var IUserManager */
- protected $userManager;
+ protected IFactory $l10nFactory;
+ protected IRootFolder $rootFolder;
+ protected ICommentsManager $commentsManager;
+ protected IURLGenerator $url;
+ protected IUserManager $userManager;
public function __construct(
IFactory $l10nFactory,