1
0
mirror of synced 2025-02-20 14:13:15 +03:00

Missed another typo

This commit is contained in:
Michel Weimerskirch 2011-07-26 11:03:23 +03:00
parent b58f573b31
commit 6ef4ac62d7

View File

@ -40,7 +40,7 @@ class ORMException extends Exception
return new self(
"Entity of type " . get_class($entity) . " has identity through a foreign entity " . get_class($relatedEntity) . ", " .
"however this entity has no identity itself. You have to call EntityManager#persist() on the related entity " .
"and make sure it an identifier was generated before trying to persist '" . get_class($entity) . "'. In case " .
"and make sure that an identifier was generated before trying to persist '" . get_class($entity) . "'. In case " .
"of Post Insert ID Generation (such as MySQL Auto-Increment or PostgreSQL SERIAL) this means you have to call " .
"EntityManager#flush() between both persist operations."
);