Skip to content

Commit

Permalink
Merge pull request #25 from boesing/qa/synchronize-globbing-with-conf…
Browse files Browse the repository at this point in the history
…ig-aggregator

bugfix: synchronize globbing with config aggregator
  • Loading branch information
Xerkus authored Oct 9, 2021
2 parents 506726a + e76b0a9 commit 086f4b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Listener/ConfigListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ protected function addConfigByPath($path, $type)
case self::GLOB_PATH:
// We want to keep track of where each value came from so we don't
// use ConfigFactory::fromFiles() since it does merging internally.
foreach (Glob::glob($path, Glob::GLOB_BRACE) as $file) {
foreach (Glob::glob($path, Glob::GLOB_BRACE, true) as $file) {
$this->addConfig($file, ConfigFactory::fromFile($file));
}
break;
Expand Down

0 comments on commit 086f4b2

Please sign in to comment.