vscode-intelephense
vscode-intelephense copied to clipboard
Automatically add ":" or {} after IF ELSE
Please can you provide a formatting feature that automatically adds {} or ":" to the IF ELSE condition?
Example:
if ($condition) // Some code else // Some code
After formatting:
if ($condition) { // Some code } else { // Some code }