Fix doctrine ORM 3.0+ compatibility #467
Merged
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.
doctrine/orm:3.x made some changes that break lexik/translation-bundle functionality.
EntityRepository::count
got a return type: https://github.com/doctrine/orm/blob/c3cc0fdd8c9ffb102170c930ca56188626a34719/src/EntityRepository.php#L137 making the implementation ofTransUnitRepository::count
throw an error (closes #459)AbstractHydrator
now has a$stmt
property instead of doctrine/orm:2.x$_stmt
, this is used bySingleColumnArrayHydrator
.I've tested these changes in two projects that I've had at hand, one using doctrine/orm:3.2.2 (the permalinks I've put above are from doctrine/orm:3.0.x, though) and another one using doctrine/orm:2.20.1 - they work in both.
For testing I have ran the import, changed something in the UI, exported - it all worked as expected. Let me know if you want me to test something else.
I've also ran the phpunit tests and they all pass - but I guess travis ci will confirm it.