summaryrefslogtreecommitdiffstats
path: root/lib/Notification
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-04-15 13:01:18 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-04-15 13:02:31 +0200
commitbe80ca5d0fc9bd77f4c7c8fd7c986d378b79cc13 (patch)
tree812df547157b93edaae20bed4c9d62e69b08ae2a /lib/Notification
parent6a475225d6b4e9d88edd9f7555492a1560a79590 (diff)
Update to php 7.4 type hinting
Using rector Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'lib/Notification')
-rw-r--r--lib/Notification/Notifier.php15
1 files changed, 5 insertions, 10 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index 49414c98..b07660e7 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -49,20 +49,15 @@ use OCP\Notification\INotifier;
class Notifier implements INotifier {
- /** @var IL10N */
- private $l10n;
+ private IL10N $l10n;
- /** @var IFactory */
- protected $factory;
+ protected IFactory $factory;
- /** @var IManager */
- protected $contactsManager;
+ protected IManager $contactsManager;
- /** @var IURLGenerator */
- protected $url;
+ protected IURLGenerator $url;
- /** @var ICloudIdManager */
- protected $cloudIdManager;
+ protected ICloudIdManager $cloudIdManager;
public function __construct(