I believe that I found a bug in the latest version of AssignedGenerator.php.
- $value = $em->getUnitOfWork()->getSingleIdentifierValue($value); + $value = $em->getUnitOfWork()->getSingleIdentifierValue($entity); getSingleIdentifierValue is expecting an entity. When you pass a value into getSingleIdentifierValue and not an entity, the get_class() function does not return a coherent value. In my case, it has been returning an empty string. Eventually, the code throws a MappingException::nonExistingClass exception. Thanks. -- You received this message because you are subscribed to the Google Groups "doctrine-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/doctrine-user. For more options, visit https://groups.google.com/d/optout.
