Skip to content

Commit e6fdfde

Browse files
committed
style: native_constant_invocation
1 parent ba36ec1 commit e6fdfde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Definition/Source/DefinitionGlob.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ private function initialize() : void
5757
}
5858

5959
// prevent errors due to GLOB_BRACE that does not exist e.g. Alpine Linux
60-
$flags = defined('GLOB_BRACE') ? GLOB_BRACE : 0;
60+
$flags = defined('GLOB_BRACE') ? \GLOB_BRACE : 0;
6161
$paths = glob($this->pattern, $flags);
6262
$sources = array_map(fn (string $path) => new DefinitionFile($path, $this->autowiring), $paths);
6363

0 commit comments

Comments
 (0)