How can I make VSCode to put empty string in PHP in the beginning/end of statements like function
/if
/switch
/foreach
? So when I input this and press enter:
if ($test === true) {
I get
if ($test === true) {
// my cursor gets here
}
How can I make VSCode to put empty string in PHP in the beginning/end of statements like function
/if
/switch
/foreach
? So when I input this and press enter:
if ($test === true) {
I get
if ($test === true) {
// my cursor gets here
}