[12.x] Fix factory recycle for many to many relationships #55271
+44
−7
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.
Let's say we create a user using a factory, and it should get assigned an existing role:
Original output:
Currently, recycle will only taken into account for a
belongsTo
relationship.$user will get a newly generated role, ignoring the recycle.
The docs make a mention of this:
HasAttached makes it pretty clear what it can (not) do, recycle is much more ambiguous. My assumption based on the code only would be that it works for any kind of relationship.
Suggested output in this PR:
If this goes forward, I'll send a matching PR for the docs.
It might be worth it adding support for one to many (from the owner side, has()) as well.
There's two possibilities there:
Might need help here, as this situation is more complex with more choices to make in the (testing) approach.
Previous discussion when integrating the for() with recycle here.