From fc87caf63974e347dd208d00ffb0be942b4cc198 Mon Sep 17 00:00:00 2001 From: username Date: Sat, 29 Aug 2020 21:21:15 +0200 Subject: [PATCH] Provide correct parameter data type --- src/Composer/Command/ConfigCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/ConfigCommand.php b/src/Composer/Command/ConfigCommand.php index 69692c0e2..159bb719b 100644 --- a/src/Composer/Command/ConfigCommand.php +++ b/src/Composer/Command/ConfigCommand.php @@ -605,7 +605,7 @@ EOT $value = strtolower($values[0]); if (true === $booleanValidator($value)) { if (false === $booleanNormalizer($value)) { - $this->configSource->addRepository($matches[1], false); + $this->configSource->addRepository($matches[1], []); return 0; }