1
0
Fork 0

Provide correct parameter data type

pull/9165/head
username 2020-08-29 21:21:15 +02:00
parent 113adbcd87
commit fc87caf639
1 changed files with 1 additions and 1 deletions

View File

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