[ 
https://issues.apache.org/jira/browse/NETBEANS-3413?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tomáš Procházka resolved NETBEANS-3413.
---------------------------------------
    Fix Version/s: 12.1
       Resolution: Implemented

PR was merged.

> 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
>            Assignee: Tomáš Procházka
>            Priority: Major
>             Fix For: 12.1
>
>         Attachments: image-2020-04-02-10-21-00-087.png, 
> image-2020-05-02-19-28-14-866.png
>
>          Time Spent: 3h 50m
>  Remaining Estimate: 0h
>
> 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: commits-unsubscr...@netbeans.apache.org
For additional commands, e-mail: commits-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to