scope only for symfony

This commit is contained in:
TomasVotruba 2021-06-05 19:58:04 +02:00
parent 49bde94ec1
commit ff1d2a7848
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ return [
// unprefixed ContainerConfigurator
function (string $filePath, string $prefix, string $content): string {
// keep vendor prefixed the prefixed file loading; not part of public API
if (str_contains($filePath, 'vendor') || ! str_contains($filePath, 'config')) {
if (str_contains($filePath, 'vendor/symfony')) {
return $content;
}