Beim Versuch, es hinzuzufügen
Code: Select all
$builder->add(
'contact',
new ContactType()
);
Code: Select all
You cannot add children to a simple form.
Maybe you should set the option "compound" to true?
Code: Select all
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$defaults = array(
'compound' => true,
'inherit_data' => true,
);
$resolver->setDefaults($defaults);
}