]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Notify.php
Merge pull request #8148 from annando/remote-comment
[friendica.git] / src / Model / Notify.php
index 49e538d7ba619c718dc4c5250f7eaf9fb2e9dbb9..a27635a07e722bd161ed0098fb16d58bbd2afd8c 100644 (file)
@@ -6,8 +6,8 @@ use Exception;
 use Friendica\App;
 use Friendica\Content\Text\BBCode;
 use Friendica\Content\Text\HTML;
-use Friendica\Core\Config\IPConfiguration;
-use Friendica\Core\L10n\L10n;
+use Friendica\Core\PConfig\IPConfig;
+use Friendica\Core\L10n;
 use Friendica\Core\Protocol;
 use Friendica\Core\System;
 use Friendica\Database\Database;
@@ -71,13 +71,13 @@ final class Notify
        private $args;
        /** @var App\BaseURL */
        private $baseUrl;
-       /** @var IPConfiguration */
+       /** @var IPConfig */
        private $pConfig;
        /** @var LoggerInterface */
        private $logger;
 
        public function __construct(Database $dba, L10n $l10n, App\Arguments $args, App\BaseURL $baseUrl,
-                                   IPConfiguration $pConfig, LoggerInterface $logger)
+                                   IPConfig $pConfig, LoggerInterface $logger)
        {
                $this->dba     = $dba;
                $this->l10n    = $l10n;