I want to disable the empty_value by default in my form type. how to do this ?
->add('subject', 'choice', array(
'label' => 'Subject',
'choices' => array(
'1' => 'contact.Appreciation',
'2' => 'contact.Feedback',
'3' => 'contact.Dissatisfactions',
'4' => 'contact.My account',
'5' => 'contact.Recruitment',
'6' => 'contact.Other',
),
'attr' => array(
'class' => 'form-control'
),
'required' => false,
'empty_value' => 'contact.Subject',
))