Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pdt-dev] Autocomplete for properties

Hi!
 
Probably a many times asked question, but:
 
Is there any plans (or is it implemented) autocomplete for properties?
I would like to have something like this:
/**
 * @property Node DOMNode
 */
function __get($name) {
  if ('Node' == $name) {
    return $this->_node;
  }
}
 
and then
 
$myobject->|[autocomplete here]
 
Thanks!

--
Alex
http://www.alexatnet.com/ - Blog and CMS created with Zend Framework and Ajax.

Back to the top