From 81648e99e9a7dab960cca1388f9f146df563c648 Mon Sep 17 00:00:00 2001 From: jurgenhaas <juergen.haas@lakedrops.com> Date: Sun, 27 Dec 2020 16:41:17 +0100 Subject: [PATCH] docker/l3d#58 Move project settings out of composer.json --- Config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Config.php b/Config.php index 0702785..92fbc12 100644 --- a/Config.php +++ b/Config.php @@ -161,10 +161,10 @@ final class Config { /** * @param string $key - * @param array $values + * @param mixed $value */ - public function setValue(string $key, array $values): void { - $this->merge([], [$this->component => [$key => $values]]); + public function setValue(string $key, $value): void { + $this->merge([], [$this->component => [$key => $value]]); $this->save(); } -- GitLab