Is there any way to get phpEd to recognize "inherited" phpDoc documentation from a superclass for an overriden method? i.e.:
abstract class TestA {
/**
* Does... uh... something.
*
* @param mixed $a Foo argument.
*/
public abstract function foo($a);
}
class TestB extends TestA {
public function foo($a) {
}
}
$x = new TestB();
$x->foo(0) |
When you type $x->foo( you get the code insight tooltip but it doesn't seem to recognize that foo() is documented in the superclass. phpDocumentor itself does automatically inherit documentation from superclasses (as documented
here) and it also supports an {@inheritdoc} tag, but phpEd doesn't seem to support either... or did I miss something? This'd be hugely useful to avoid having to repeat method documentation over and over, and maintain it in multiple locations every time something changes.