Fix broken php if snippet in neovim

This commit is contained in:
Daniel Siepmann 2022-08-03 08:31:17 +02:00
parent 48e1b9d244
commit 4596c6254e
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -274,7 +274,7 @@ snippet Exception
throw new \Exception('${1}', `strftime('%s')`);
snippet if
if (${1:/* condition */}) {
if (${1}) {
${0}
}