mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
[PR #9268] Fix WhereInWalker description to better describe the behaviour of this class #11478
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/doctrine/orm/pull/9268
State: closed
Merged: Yes
I changed the verb "replace" with "append" to better describe the behavior of this class. As you can see in lines from 105 to 140 the
$AST->whereClauseis not replaced with the IN condition, but the IN condition is appended.This is not a detail since the verb "replace" generates confusion and in Issue https://github.com/doctrine/orm/issues/9042 we thought that there was a bug in the code.