]> git.mxchange.org Git - friendica.git/commitdiff
Convert class calls into DI calls
authorMichael <heluecht@pirati.ca>
Thu, 19 May 2022 09:08:04 +0000 (09:08 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 19 May 2022 09:08:04 +0000 (09:08 +0000)
src/Model/Post/UserNotification.php
src/Navigation/Notifications/Factory/Notification.php

index f4e700f0bc9d8ed75c240102688408201a321ba4..d16ec4936f9eb5572d85c3c6d696136d79d7df8b 100644 (file)
@@ -308,7 +308,7 @@ class UserNotification
                        return;
                }
 
-               $notification = (new Notifications\Factory\Notification(DI::baseUrl(), DI::l10n(), DI::localRelationship(), DI::logger()))->createForUser(
+               $notification = DI::notificationFactory()->createForUser(
                        $uid,
                        $item['vid'],
                        $type,
@@ -336,7 +336,7 @@ class UserNotification
         */
        public static function insertNotification(int $actor, string $verb, int $uid): bool
        {
-               $notification = (new Notifications\Factory\Notification(DI::baseUrl(), DI::l10n(), DI::localRelationship(), DI::logger()))->createForRelationship(
+               $notification = DI::notificationFactory()->createForRelationship(
                        $uid,
                        $actor,
                        $verb
index a41ba24ce1f03f8fa86ab14dc329c91edf20a743..b2132beaffc838fa8bddf0f7b74a9f610499a136 100644 (file)
@@ -30,8 +30,6 @@ use Friendica\Content\Text\Plaintext;
 use Friendica\Core\Cache\Enum\Duration;
 use Friendica\Core\Cache\Capability\ICanCache;
 use Friendica\Core\L10n;
-use Friendica\Core\System;
-use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\Post;
 use Friendica\Model\Verb;
@@ -51,14 +49,14 @@ class Notification extends BaseFactory implements ICanCreateFromTableRow
        /** @var ICanCache */
        private $cache;
 
-       public function __construct(\Friendica\App\BaseURL $baseUrl, \Friendica\Core\L10n $l10n, \Friendica\Contact\LocalRelationship\Repository\LocalRelationship $localRelationshipRepo, LoggerInterface $logger)
+       public function __construct(\Friendica\App\BaseURL $baseUrl, \Friendica\Core\L10n $l10n, \Friendica\Contact\LocalRelationship\Repository\LocalRelationship $localRelationshipRepo, LoggerInterface $logger, ICanCache $cache)
        {
                parent::__construct($logger);
 
                $this->baseUrl = $baseUrl;
                $this->l10n = $l10n;
                $this->localRelationshipRepo = $localRelationshipRepo;
-               $this->cache = DI::cache(); // @todo Add the correct mechanism for class construction here
+               $this->cache = $cache;
        }
 
        public function createFromTableRow(array $row): Entity\Notification