Closed
Description
Symfony developers are used to the createForm()
shortcut method provided by the base controller. Internally this shortcut uses the create()
method of the FormFactory
. Apparently, there is another method called createNamed()
which comes in very handy when you need to simplify the generated form name (see this comment as an example).
As far as I know, this createNamed()
method isn't documented.