mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #9565] Fix type on SqlWalker::walkPathExpression()
#11709
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/9565
State: closed
Merged: Yes
The parameter of
SqlWalker::walkPathExpression()is annotated asmixed, but passing anything but aPathExpressionto it would result in an error because the method accesses properties on the passed value.