php.fmt
=======

Thank you for upgrading.

New feature added in command palette:
"phpfmt: toggle add missing parentheses for instantion calls"

From:
$obj = new SomeClass;
$obj = new SomeClass/*Comment */;
$obj = new SomeClass//Comment
;

To:
$obj = new SomeClass();
$obj = new SomeClass()/*Comment */;
$obj = new SomeClass()//Comment
;

---

- 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

