FIX Allow passing objects to InjectionCreator::create() #10555
Merged
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.
Issue #10533
Replacement for #10539
Main difference is the use of
get_class($class)
instead ofreturn $class
to ensure that a new instance is always created. I've also changed the unit testing.I've also tidied up some of the previous
?? ''
added as part of the php 8.1 code-writingThis is technically a bugfix since it restores previous behavior of allow anonymous classes, which will unintentional, seems like it has a valid use case in unit testing. Anonymous classes can be cleaner to use then the at times cumbersome combination of
TestOnly
classes withprivate static $extra_dataobjects
I've put n8-dev down as a co-author