mirror of
https://github.com/doctrine/orm.git
synced 2026-04-30 01:43:20 +02:00
DDC-3188: Call to a member function getValue() on a non-object in vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php #3951
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 @doctrinebot on GitHub (Jun 24, 2014).
Originally assigned to: @ostrolucky on GitHub.
Jira issue originally created by user dwieeb:
This is the line that causes the fatal error: https://github.com/doctrine/doctrine2/blob/v2.4.2/lib/Doctrine/ORM/UnitOfWork.php#L678
This is the association that is breaking it (i.e. reflFields[ 'user' ] is a non-object):
This is the pk of the referenced entity.
If an exception was thrown due to missing metadata information, I could catch it, but fatal errors due to this bug have been crashing our scripts and they've had to be manually restarted.
Let me know what other information is needed.
Full stack trace:
{quote}
PHP 5. Doctrine\ORM\EntityManager->flush() our_code.php
PHP 6. Doctrine\ORM\UnitOfWork->commit() vendor/doctrine/orm/lib/Doctrine/ORM/EntityManager.php:389
PHP 7. Doctrine\ORM\UnitOfWork->computeChangeSets() vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:297
PHP 8. Doctrine\ORM\UnitOfWork->computeScheduleInsertsChangeSets() vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:703
PHP 9. Doctrine\ORM\UnitOfWork->computeChangeSet() vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php:404
PHP Fatal error: Call to a member function getValue() on a non-object in vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php on line 678
{quote}
@doctrinebot commented on GitHub (Jun 24, 2014):
Comment created by @ocramius:
Did you actually validate your mappings?
@doctrinebot commented on GitHub (Jun 24, 2014):
Comment created by dwieeb:
I did not validate the mapping. I did not know about the orm:validate-schema until just now. I will fix these errors and resubmit if there is still an issue.
Sorry about that, thanks.
@doctrinebot commented on GitHub (Jun 24, 2014):
Comment created by dwieeb:
The tweet and user relationship is not in the list of invalid mappings.
@doctrinebot commented on GitHub (Jun 26, 2014):
Comment created by @ocramius:
Are
UserandTweetin the same namespace?@doctrinebot commented on GitHub (Jun 27, 2014):
Comment created by dwieeb:
Yes, and I've since then used the FQNS. I would get a class not found error when validating schema.
This is something that I know can't really be debugged by you guys, I was just hoping for a little direction. We are using memcache to store our metadata, and we are clearing and regenerating the metadata during every deploy (it is not autogenerated). I'm now using a commit hash as the namespace of the metadata, so we'll see if this fixes the issue.
@doctrinebot commented on GitHub (Jun 27, 2014):
Comment created by @ocramius:
It looks like a typo (CasESensiTIViTy issue) to me.
@ostrolucky commented on GitHub (Aug 7, 2018):
Closing due to lack of feedback. If this is still an issue, please let us know by commenting here.