This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 253457 - When creating new function, add option for parent class
Summary: When creating new function, add option for parent class
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 8.0.2
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-07-14 08:36 UTC by fiala.premysl
Modified: 2015-07-14 08:39 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description fiala.premysl 2015-07-14 08:36:45 UTC
Scenario:
Class A {}
Class B extends A {}

Class C extends A 
{
....
 $this->doSomethingCommon(); // Alt + enter for create function hints
....
}

I would like to have option for creating function in parent/(interface/trait). Now I can only create function in "C" class.