Force loader to be null or a EntityLoaderInterface

This commit is contained in:
Thomas Tourlourat 2012-11-15 16:44:00 +01:00
parent 9a2edb9a63
commit 82334d2640

View File

@ -148,6 +148,10 @@ abstract class DoctrineType extends AbstractType
$resolver->setNormalizers(array(
'em' => $emNormalizer,
));
$resolver->setAllowedTypes(array(
'loader' => array('null', 'Symfony\Bridge\Doctrine\Form\ChoiceList\EntityLoaderInterface'),
));
}
/**