PHP Intellisense is a productivity tool with the following features:
Filtered list
As you continue to write your code, [title] will filter through and display only those items which match your needs.
[title] is able to detect the context and provide you items based on it.
You can also request [title] items at any time, by simply pressing Ctrl + Space
[title] provides informations for classes properties, methods and variables.
Example code:
class test1 { var $variable1; function method1(){ $this-> } }typing "$this->" will open [title], and you will see
class test1 { var $variable1; function method1(){ $this->variable1 = "empty"; } } class test2 extends test1{ var $variable2, $variable3; function method2(){ $this-> } }
method2()will open [title]:
class test1 { var $variable1; function method1(){ $this->variable1 = "empty"; } } $obj = new test1(); $obj->will show the same window as in example 1:
In order to use this feature, you need to turn on PHPParser.