I have SuperType Form for Entity Super.
SuperType
Super
In this form I have a collection field of ChildType Form types for Entity
collection
ChildType
In Symfony 3, this is called entry_options.
$builder->add('childrens', CollectionType::class, array( 'entry_type' => ChildType::class, 'entry_options' => array( 'my_custom_option' => true ), ));