minor #19085 FormBuilderInterface: fix getForm() return type. (taueres)

This PR was merged into the 2.7 branch.

Discussion
----------

FormBuilderInterface: fix getForm() return type.

| Q             | A
| ------------- | ---
| Branch?       | 2.7
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

FormBuilderInterface->getForm() should depend on abstractions and
not implementations as a return type.

Commits
-------

3fa081c FormBuilderInterface: fix getForm() return type.
This commit is contained in:
Tobias Schultze 2016-06-18 22:20:36 +02:00
commit 7eab67fbb5
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();
}