Some others developer environments (Net Beans for example) allow users to activate this feature, which consist in a auto completion tool that shows you the possible options to write when you are working with classes or functions.
For example:
Code: Select all
{
$obj = new MyClass();
$obj-> // Now $obj is Whatever object, autocompletion will show options like methods, properties, etc.
}