8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99321cb commit db2ee54Copy full SHA for db2ee54
src/Symfony/Bridge/Doctrine/Form/ChoiceList/EntityChoiceList.php
@@ -392,7 +392,10 @@ private function load()
392
private function getIdentifierValues($entity)
393
{
394
if (!$this->em->contains($entity)) {
395
- throw new FormException('Entities passed to the choice field must be managed');
+ throw new FormException(
396
+ 'Entities passed to the choice field must be managed. Maybe ' .
397
+ 'persist them in the entity manager?'
398
+ );
399
}
400
401
$this->em->initializeObject($entity);
0 commit comments