php.fmt
=======

Thank you for upgrading.

New feature added in command palette:
"phpfmt: toggle cakephp style (experimental)"

From:
<?php
namespace NS1;
class A {
	protected $f;
	private $b;
	public $a;
	function methodName(){
		if ($a) {
			noop();
		} elseif ($a) {
			noop();
		} else {
			noop();
		}
	}
}

To:
<?php
namespace NS1;
class A {
	protected $_f;
	private $__b;
	public $a;
	public function methodName() {
		if ($a) {
			noop();
		} elseif ($a) {
			noop();
		} else {
			noop();
		}
	}
}

---

- 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

