phpfmt_stable
phpfmt_stable copied to clipboard
elseif bug
Now fmt wokr like this:
if (true)
$variable = 'text';
elseif (1)
$siteId = 'text';
convert to:
if (true) {
$variable = 'text';
} elseif (1);
$siteId = 'text';