WARNING:
You are browsing the documentation for version
2.1 which is not maintained anymore.
If some of your projects are still using this version, consider upgrading.
Generating a New Form Type Class Based on a Doctrine Entity
2.1 version
Maintained
Unmaintained
Generating a New Form Type Class Based on a Doctrine Entity¶
Usage¶
The generate:doctrine:form
generates a basic form type class by using the
metadata mapping of a given entity class:
1 | php app/console generate:doctrine:form AcmeBlogBundle:Post
|
Required Arguments¶
entity
: The entity name given as a shortcut notation containing the bundle name in which the entity is located and the name of the entity. For example:AcmeBlogBundle:Post
:1
php app/console generate:doctrine:form AcmeBlogBundle:Post
This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.