mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #6708] [Bug] Fix compatibility with PHP >= 7.0 in v2.3 #10105
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/6708
State: closed
Merged: No
Not sure if it is related with this BC break but the QueryBuilder from doctrine/orm
2.3is not working normally with PHP>= 7.0.If
func_get_argsis not called first, it returnsinstead of (when it's called first):
It seems it was fixed for HHVM from
2.4, but it's still a problem in2.3with PHP>= 7.0.This should be fixed, or the support for
>= 7.0should be dropped in2.3.I added PHP versions
5.5,5.6,7.0and7.1in Travis Matrix, since the current requirement for PHP is>=5.3.2and versions above5.4are not tested right now.