diff options
author | Andrew Summers <18727110+summersab@users.noreply.github.com> | 2023-08-29 17:12:25 -0500 |
---|---|---|
committer | Andrew Summers <18727110+summersab@users.noreply.github.com> | 2023-08-29 21:32:10 -0500 |
commit | 5dccf25e11da5a1838e56c5afd47e1068a7fc965 (patch) | |
tree | 4bb691656637f3d02690f954ddfc83478a3b950b /lib | |
parent | 9d1547f59d53b46ba401ddf0e7f4c6e4f067004e (diff) | |
download | nextcloud-server-5dccf25e11da5a1838e56c5afd47e1068a7fc965.tar.gz nextcloud-server-5dccf25e11da5a1838e56c5afd47e1068a7fc965.zip |
Refactor `OC\Server::getNotificationManager`
Signed-off-by: Andrew Summers <18727110+summersab@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Repair.php | 3 | ||||
-rw-r--r-- | lib/private/User/User.php | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/private/Repair.php b/lib/private/Repair.php index 05624a2423a..2c8672fcf26 100644 --- a/lib/private/Repair.php +++ b/lib/private/Repair.php @@ -42,6 +42,7 @@ use OCP\Collaboration\Resources\IManager; use OCP\EventDispatcher\IEventDispatcher; use OCP\Migration\IOutput; use OCP\Migration\IRepairStep; +use OCP\Notification\IManager as INotificationManager; use OC\DB\Connection; use OC\DB\ConnectionAdapter; use OC\Repair\AddBruteForceCleanupJob; @@ -198,7 +199,7 @@ class Repair implements IOutput { new AddCleanupUpdaterBackupsJob(\OC::$server->getJobList()), new CleanupCardDAVPhotoCache(\OC::$server->getConfig(), \OC::$server->getAppDataDir('dav-photocache'), \OC::$server->get(LoggerInterface::class)), new AddClenupLoginFlowV2BackgroundJob(\OC::$server->getJobList()), - new RemoveLinkShares(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getGroupManager(), \OC::$server->getNotificationManager(), \OCP\Server::get(ITimeFactory::class)), + new RemoveLinkShares(\OC::$server->getDatabaseConnection(), \OC::$server->getConfig(), \OC::$server->getGroupManager(), \OC::$server->get(INotificationManager::class), \OCP\Server::get(ITimeFactory::class)), new ClearCollectionsAccessCache(\OC::$server->getConfig(), \OCP\Server::get(IManager::class)), \OCP\Server::get(ResetGeneratedAvatarFlag::class), \OCP\Server::get(EncryptionLegacyCipher::class), diff --git a/lib/private/User/User.php b/lib/private/User/User.php index d1185e17aef..3a9697bcbd4 100644 --- a/lib/private/User/User.php +++ b/lib/private/User/User.php @@ -49,6 +49,7 @@ use OCP\IImage; use OCP\IURLGenerator; use OCP\IUser; use OCP\IUserBackend; +use OCP\Notification\IManager as INotificationManager; use OCP\User\Events\BeforePasswordUpdatedEvent; use OCP\User\Events\BeforeUserDeletedEvent; use OCP\User\Events\PasswordUpdatedEvent; @@ -297,9 +298,9 @@ class User implements IUser { $avatarManager = \OCP\Server::get(AvatarManager::class); $avatarManager->deleteUserAvatar($this->uid); - $notification = \OC::$server->getNotificationManager()->createNotification(); + $notification = \OC::$server->get(INotificationManager::class)->createNotification(); $notification->setUser($this->uid); - \OC::$server->getNotificationManager()->markProcessed($notification); + \OC::$server->get(INotificationManager::class)->markProcessed($notification); /** @var AccountManager $accountManager */ $accountManager = \OCP\Server::get(AccountManager::class); |