Replace PostUpdate key-value config entries with key-value pair entries

This commit is contained in:
Philipp
2022-12-29 20:18:13 +01:00
parent 47764387b3
commit 10f8631cd9
11 changed files with 112 additions and 101 deletions

View File

@@ -94,12 +94,12 @@ HELP;
return $help;
}
public function __construct(App\Mode $appMode, IManageConfigValues $config, array $argv = null)
public function __construct(App\Mode $appMode, IManageConfigValues $keyValue, array $argv = null)
{
parent::__construct($argv);
$this->appMode = $appMode;
$this->config = $config;
$this->config = $keyValue;
}
protected function doExecute(): int