rollback unwanted change

This commit is contained in:
Philipp Holzer 2022-12-29 22:13:39 +01:00
parent 925c30280c
commit f944a2a620
Signed by: nupplaPhil
GPG Key ID: 24A7501396EB5432
3 changed files with 6 additions and 6 deletions

View 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;
}

View 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

View 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