Skip to content

Commit f61d324

Browse files
committed
Patch wrong namespace prefixing in PHAR in WindowsRegistryLogicalFinder
1 parent 95fbd57 commit f61d324

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

compiler/build/scoper.inc.php

+6
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,12 @@ function (string $filePath, string $prefix, string $content): string {
218218

219219
return str_replace(sprintf('use %s\\PhpParser;', $prefix), 'use PhpParser;', $content);
220220
},
221+
function (string $filePath, string $prefix, string $content): string {
222+
if ($filePath !== 'vendor/fidry/cpu-core-counter/src/Finder/WindowsRegistryLogicalFinder.php') {
223+
return $content;
224+
}
225+
return str_replace(sprintf('%s\\\\reg query', $prefix), 'reg query', $content);
226+
},
221227
],
222228
'exclude-namespaces' => [
223229
'PHPStan',

0 commit comments

Comments
 (0)