I have created form with one element from Entity:
$promo = new Promo();
$form = $this->createFormBuilder($promo)
->add('code', 'text')
->getForm();
And I want to add file element (this field doesn't exist in the Entity). When I do:
$form = $this->createFormBuilder($promo)
->add('code', 'text')
->add('image', 'file')
->getForm();
I have an error: Neither property "image" nor method "getImage()". How can I add this field?