php.fmt
=======

Thank you for upgrading.

New feature added in command palette:
"phpfmt: toggle linebreak between methods"

From:
class A {
	function a(){
	}
	function b(){
	}
}

To:
class A {
	function a(){
	}

	function b(){
	}
}

Bugfix:
1. Duplicated semi-colons are now removed.
From:
<?php
echo 1;;
echo 2;

To:
<?php
echo 1;
echo 2;

2. Extra comma in the end of short arrays.
From:
$arr = [
	1,
	2,
	3
];

To:
$arr = [
	1,
	2,
	3,
];

- If you find anything wrong with this update, please report an issue at https://github.com/dericofilho/sublime-phpfmt/issues

- If you like what this plugin does for you, please consider starring at https://github.com/dericofilho/sublime-phpfmt or https://github.com/dericofilho/php.tools

