From b1cbc08ec0a2575da78e06db56e81a2e7ed90fcb Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Mon, 7 Sep 2020 16:22:14 +0200 Subject: [PATCH] Allow false as well as repository value, refs #9165 --- src/Composer/Config/ConfigSourceInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Composer/Config/ConfigSourceInterface.php b/src/Composer/Config/ConfigSourceInterface.php index a00e989bb..0bd4faaa0 100644 --- a/src/Composer/Config/ConfigSourceInterface.php +++ b/src/Composer/Config/ConfigSourceInterface.php @@ -23,8 +23,8 @@ interface ConfigSourceInterface /** * Add a repository * - * @param string $name Name - * @param array $config Configuration + * @param string $name Name + * @param array|false $config Configuration */ public function addRepository($name, $config);