Skip to content

Commit

Permalink
Fix namespace prefixing
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Aug 30, 2023
1 parent f7656cf commit 5a2e13c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/build/scoper.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function (string $filePath, string $prefix, string $content): string {
return str_replace('|Nette\\\\DI\\\\Statement', sprintf('|\\\\%s\\\\Nette\\\\DI\\\\Statement', $prefix), $content);
},
function (string $filePath, string $prefix, string $content): string {
if ($filePath !== 'vendor/nette/di/src/DI/Config/DefinitionSchema.php') {
if ($filePath !== 'vendor/nette/di/src/DI/Extensions/DefinitionSchema.php') {
return $content;
}
$content = str_replace(
Expand Down

0 comments on commit 5a2e13c

Please sign in to comment.