php.fmt
=======

Thank you for upgrading.

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


//From:
class A {
	public function d(){}
	protected function b(){}
	private function c(){}
	public function a(){}
}

// To
class A {
	public function a() {}
	public function d() {}
	protected function b() {}
	private function c() {}
}

---

- 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

