We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba36ec1 commit e6fdfdeCopy full SHA for e6fdfde
src/Definition/Source/DefinitionGlob.php
@@ -57,7 +57,7 @@ private function initialize() : void
57
}
58
59
// prevent errors due to GLOB_BRACE that does not exist e.g. Alpine Linux
60
- $flags = defined('GLOB_BRACE') ? GLOB_BRACE : 0;
+ $flags = defined('GLOB_BRACE') ? \GLOB_BRACE : 0;
61
$paths = glob($this->pattern, $flags);
62
$sources = array_map(fn (string $path) => new DefinitionFile($path, $this->autowiring), $paths);
63
0 commit comments