1
0
mirror of synced 2025-02-09 00:39:25 +03:00

Fix double spacing in exception's message

This commit is contained in:
Martin Georgiev 2017-08-03 11:52:06 +01:00
parent 6744b48bc2
commit 30088fe529

View File

@ -93,7 +93,7 @@ class ORMInvalidArgumentException extends \InvalidArgumentException
. $assoc['sourceEntity'] . "#" . $assoc['fieldName'] . "' that was not"
. " configured to cascade persist operations for entity: " . self::objToStr($entry) . "."
. " To solve this issue: Either explicitly call EntityManager#persist()"
. " on this unknown entity or configure cascade persist "
. " on this unknown entity or configure cascade persist"
. " this association in the mapping for example @ManyToOne(..,cascade={\"persist\"})."
. (method_exists($entry, '__toString') ? "": " If you cannot find out which entity causes the problem"
. " implement '" . $assoc['targetEntity'] . "#__toString()' to get a clue."));