]> git.mxchange.org Git - friendica.git/commitdiff
rollback unwanted change
authorPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 21:13:39 +0000 (22:13 +0100)
committerPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 21:13:39 +0000 (22:13 +0100)
src/Console/AutomaticInstallation.php
src/Console/Config.php
src/Console/Maintenance.php

index 85cfa710c8600b0b1647cc7f0a0995c5ed78d25e..1a6d10c241a8f89afa79a72a4adc92878a4b47cd 100644 (file)
@@ -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;
        }
index 1e88d36a8b7388e3e62607c822d0e5755c136fa1..760b1ca51b39822b1a67da3e103c2c30984e3459 100644 (file)
@@ -94,12 +94,12 @@ HELP;
                return $help;
        }
 
-       public function __construct(App\Mode $appMode, IManageConfigValues $keyValue, array $argv = null)
+       public function __construct(App\Mode $appMode, IManageConfigValues $config, array $argv = null)
        {
                parent::__construct($argv);
 
                $this->appMode = $appMode;
-               $this->config = $keyValue;
+               $this->config = $config;
        }
 
        protected function doExecute(): int
index e9909ed0572c9bc9f32398da5d17954a3cfb29bf..7744c9ee471d0b56ed07ea4ab25825a20e86fbc9 100644 (file)
@@ -69,12 +69,12 @@ HELP;
                return $help;
        }
 
-       public function __construct(App\Mode $appMode, IManageConfigValues $keyValue, $argv = null)
+       public function __construct(App\Mode $appMode, IManageConfigValues $config, $argv = null)
        {
                parent::__construct($argv);
 
                $this->appMode = $appMode;
-               $this->config = $keyValue;
+               $this->config = $config;
        }
 
        protected function doExecute(): int