]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/AutomaticInstallation.php
Merge pull request #12604 from nupplaphil/bug/marco_r
[friendica.git] / src / Console / AutomaticInstallation.php
index 85cfa710c8600b0b1647cc7f0a0995c5ed78d25e..83c6ac4c3865e77b6e6e5ffe17bbcd8ce12975fa 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -100,12 +100,12 @@ Examples
 HELP;
        }
 
-       public function __construct(App\Mode $appMode, Cache $keyValueCache, IManageConfigValues $config, Database $dba, array $argv = null)
+       public function __construct(App\Mode $appMode, Cache $configCache, IManageConfigValues $config, Database $dba, array $argv = null)
        {
                parent::__construct($argv);
 
                $this->appMode     = $appMode;
-               $this->configCache = $keyValueCache;
+               $this->configCache = $configCache;
                $this->config      = $config;
                $this->dba         = $dba;
        }