Forms
Required plugin: Symfony Support.
Most web applications contain one or more forms to collect user input. Symfony comes with a Form
component and the FormBuilder
functions that make creating and maintaining forms and their validation logic easier. The Symfony Support plugin provides code completion and navigation for forms.
PhpStorm provides code completion and code navigation for form type aliases, form options, and parameters. In the editor, press CtrlSpace to invoke code completion for any of the following:
Use code completion for the registered form type aliases.
Specify the fields' options.
Specify translation keys and domains in applications that require internationalization and make use of the Translation component.
To navigate to the declaration of a field, place the caret at its usage and press Ctrl0B or, alternatively, CtrlClick the usage.
Thanks for your feedback!