[title]

Overview

Informations

[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
[title]

Let's see other example:
 class test1 {
     var $variable1;
     function method1(){
      $this->variable1 = "empty";
     }
}

 class test2 extends test1{
  var $variable2, $variable3;
  function method2(){
   $this->
  }
 }

Again, typing "$this->" in
 method2() 
will open [title]:
[title]


[title] will also find variable class name (if specified), so this code:
 class test1 {
     var $variable1;
     function method1(){
      $this->variable1 = "empty";
     }
}
$obj = new test1();
$obj->
will show the same window as in example 1:
[title]


Notes

In order to use this feature, you need to turn on PHPParser.


See also

See also : PHPParser , PHP CodeCompletion