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