]> git.mxchange.org Git - friendica.git/blobdiff - src/Factory/CacheFactory.php
Merge pull request #8179 from MrPetovan/bug/notices
[friendica.git] / src / Factory / CacheFactory.php
index 8cf7fcd66aa0fbdc1ddda117dab069792dd1c872..4dfda5f2c53564b140b4fc8a0e8eed28e989ac83 100644 (file)
@@ -5,7 +5,7 @@ namespace Friendica\Factory;
 use Friendica\App\BaseURL;
 use Friendica\Core\Cache;
 use Friendica\Core\Cache\ICache;
-use Friendica\Core\Config\IConfiguration;
+use Friendica\Core\Config\IConfig;
 use Friendica\Database\Database;
 use Friendica\Util\Profiler;
 use Psr\Log\LoggerInterface;
@@ -25,7 +25,7 @@ class CacheFactory
        const DEFAULT_TYPE = Cache\Type::DATABASE;
 
        /**
-        * @var IConfiguration The IConfiguration to read parameters out of the config
+        * @var IConfig The IConfiguration to read parameters out of the config
         */
        private $config;
 
@@ -49,7 +49,7 @@ class CacheFactory
         */
        private $logger;
 
-       public function __construct(BaseURL $baseURL, IConfiguration $config, Database $dba, Profiler $profiler, LoggerInterface $logger)
+       public function __construct(BaseURL $baseURL, IConfig $config, Database $dba, Profiler $profiler, LoggerInterface $logger)
        {
                $this->hostname = $baseURL->getHostname();
                $this->config   = $config;