phpfmt_stable icon indicating copy to clipboard operation
phpfmt_stable copied to clipboard

elseif bug

Open higimo opened this issue 8 years ago • 0 comments

Now fmt wokr like this:

if (true)
	$variable = 'text';
elseif (1)
	$siteId = 'text';

convert to:

if (true) {
	$variable = 'text';
} elseif (1);
$siteId = 'text';

higimo avatar Mar 20 '17 14:03 higimo