mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
Call to a member function resolveAssociationEntries() on boolean {"detail":"[object] (Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): Call to a member function resolveAssociationEntries() on boolean at /www/vendor/doctrine/orm/lib/D… #5995
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?
Originally created by @mingmingxianseng on GitHub (Jun 19, 2018).
Originally assigned to: @lcobucci on GitHub.
The following mistakes occur occasionally,and I can't find the solution
I think the parameter $entityEntry sometimes will be false , then occur the mistakes.
change
if ($entityEntry === null)toif ($entityEntry === null || $entityEntry === false ).Is this a good solution ?
I need your help. Thank you very much.