Tomáš Procházka created NETBEANS-3413:
-----------------------------------------
Summary: PHPDoc - implicit description inheritance
Key: NETBEANS-3413
URL: https://issues.apache.org/jira/browse/NETBEANS-3413
Project: NetBeans
Issue Type: Improvement
Components: php - Editor
Affects Versions: 11.2
Reporter: Tomáš Procházka
Currently NetBeans IDE supports inheritance of docblocks containing @inheritdoc
annotation.
It would be useful if docblocks are inherited even in case when there is no
docblock present.
Example:
{code:java}
class Circle {
/**
* Hides circle
*/
public function hide() {
}
/**
* Shows circle
*/
public function show() {
}
}
class SpecialCircle extends Circle {
/**
* {@inheritdoc}
*/
public function hide() {
parent::hide();
}
public function show() {
parent::show();
}
public function redraw() {
$this->hide(); // Text "Hides circle" is shown
$this->show(); // Text "PHPDoc not found" is shown, expected "Shows
circle"
}
}
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists