php.fmt, php.tools and php.oracle aim to help PHP development.
Plugin runs with PHP 5.6 or newer installed in the machine running the plugin.
There is a backwards compatible mode with PHP 5.5 - however not all improvements will be available in this mode.
The following features are available through command palette (ctrl+shift+P
or cmd+shift+P
) :
$a = new A(); $b = new C(); $d = new D();
use \OtherNS\A; use \OtherNS\C; use \OtherNS\D;
$a = new A(); $b = new C(); $d = new D(); note how it sorts the use clauses, and removes unused ones
$a = new A(); $b = new C(); $d = new D();
use \OtherNS\A; use \OtherNS\C; use \OtherNS\D;
$a = new A(); $b = new C(); $d = new D(); note how it sorts the use clauses, and removes unused ones
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.