[DependencyInjection] Fix dumping non-shared factories with TaggedIteratorArgument #50262
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fix dumping non-shared factories which have a configured
methodCall
withTaggedIteratorArgument
.I've updated my project to the fresh 6.3-beta versions and discovered that DI generates an invalid code. I've reported issue #50257, where you can find more info and context.
The PHPDumper class generated code where use the
$containerRef
variable located in into anonymous function where this variable is not accessible.@nicolas-grekas quickly hinted to me where probably the bug is located. It works! I've prepared PR with this fix, and a PHPUnit test covers this case.
Before the fix, my test case generated this code:
Which threw an error:
Warning: Undefined variable $containerRef
at this line:After the fix, looks good and works.
Thx @nicolas-grekas for your help!