From f944a2a620a46ff175267d97a2202dd15c860ab7 Mon Sep 17 00:00:00 2001
From: Philipp <admin@philipp.info>
Date: Thu, 29 Dec 2022 22:13:39 +0100
Subject: [PATCH] rollback unwanted change

---
 src/Console/AutomaticInstallation.php | 4 ++--
 src/Console/Config.php                | 4 ++--
 src/Console/Maintenance.php           | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/Console/AutomaticInstallation.php b/src/Console/AutomaticInstallation.php
index 85cfa710c8..1a6d10c241 100644
--- a/src/Console/AutomaticInstallation.php
+++ b/src/Console/AutomaticInstallation.php
@@ -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;
 	}
diff --git a/src/Console/Config.php b/src/Console/Config.php
index 1e88d36a8b..760b1ca51b 100644
--- a/src/Console/Config.php
+++ b/src/Console/Config.php
@@ -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
diff --git a/src/Console/Maintenance.php b/src/Console/Maintenance.php
index e9909ed057..7744c9ee47 100644
--- a/src/Console/Maintenance.php
+++ b/src/Console/Maintenance.php
@@ -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
-- 
2.39.5