1
0
mirror of synced 2025-02-02 13:31:45 +03:00

Documenting BC Break introduced by the removal of Doctrine\ORM\Query\SqlWalker#walkCaseExpression()

Ref: https://github.com/doctrine/doctrine2/pull/5600
This commit is contained in:
Marco Pivetta 2017-01-15 23:56:44 +01:00 committed by GitHub
parent 09cbb9ff48
commit 41a377948b

View File

@ -1,6 +1,11 @@
# Upgrade to 2.5
## Minor BC BREAK: removed $className parameter on `AbstractEntityInheritancePersister#getSelectJoinColumnSQL`
## Minor BC BREAK: removed `Doctrine\ORM\Query\SqlWalker#walkCaseExpression()`
Method `Doctrine\ORM\Query\SqlWalker#walkCaseExpression()` was unused and part
of the internal API of the ORM, so it was removed. [#5600](https://github.com/doctrine/doctrine2/pull/5600).
## Minor BC BREAK: removed $className parameter on `AbstractEntityInheritancePersister#getSelectJoinColumnSQL()`
As `$className` parameter was not used in the method, it was safely removed.