php.fmt
=======

Thank you for upgrading.

New feature added in configuration file:
{
	"passes": ["PSR2MultilineFunctionParams"],
}


//From:
function a($a)
{
	return false;
}
function b($a, $b, $c)
{
	return true;
}

// To
function a($a)
{
	return false;
}
function b(
	$a,
	$b,
	$c
) {
	return true;
}

---

New feature added in configuration file:
{
	"passes": ["SpaceAroundControlStructures"],
}


//From:
if($a){

}
do {

}while($a);

//To:
if($a){

}

do {

}while($a);

---

- 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

