rollback unwanted change

This commit is contained in:
Philipp 2022-12-29 22:13:39 +01:00
parent 925c30280c
commit f944a2a620
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
3 changed files with 6 additions and 6 deletions

View File

@ -100,12 +100,12 @@ Examples
HELP; 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); parent::__construct($argv);
$this->appMode = $appMode; $this->appMode = $appMode;
$this->configCache = $keyValueCache; $this->configCache = $configCache;
$this->config = $config; $this->config = $config;
$this->dba = $dba; $this->dba = $dba;
} }

View File

@ -94,12 +94,12 @@ HELP;
return $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); parent::__construct($argv);
$this->appMode = $appMode; $this->appMode = $appMode;
$this->config = $keyValue; $this->config = $config;
} }
protected function doExecute(): int protected function doExecute(): int

View File

@ -69,12 +69,12 @@ HELP;
return $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); parent::__construct($argv);
$this->appMode = $appMode; $this->appMode = $appMode;
$this->config = $keyValue; $this->config = $config;
} }
protected function doExecute(): int protected function doExecute(): int