FormBuilderInterface: fix getForm() return type.

FormBuilderInterface->getForm() should depend on abstractions and
not implementations as a return type.
This commit is contained in:
Sergio Santoro 2016-06-17 13:17:04 +02:00
parent eccc5353b3
commit 3fa081cc71
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ interface FormBuilderInterface extends \Traversable, \Countable, FormConfigBuild
/**
* Creates the form.
*
* @return Form The form
* @return FormInterface The form
*/
public function getForm();
}