vscode-phpfmt
vscode-phpfmt copied to clipboard
New Line before else
The plugin currently change
if (statement) {
// do something
}
elseif (other statement) {
// do other thing
}
into
if (statement) {
// do something
} elseif (other statement) {
// do other thing
}
How to turn this off? I can't find it in the documentation.