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 236892

Summary: Netbeans IDE doesn't support nested level property reflection. (Like Zend studio, Zend studio has nested properties reflection) $foo->bar-> - - -
Product: php Reporter: brkumar121
Component: EditorAssignee: Ondrej Brejla <obrejla>
Status: NEW ---    
Severity: normal    
Priority: P2    
Version: 7.3.1   
Hardware: PC   
OS: Windows 7   
Issue Type: ENHANCEMENT Exception Reporter:
Attachments: IDE log

Description brkumar121 2013-10-08 17:10:03 UTC
Product Version = NetBeans IDE 7.3.1 (Build 201306052037)
Operating System = Windows 7 version 6.1 running on amd64
Java; VM; Vendor = 1.6.0_37
Runtime = Java HotSpot(TM) 64-Bit Server VM 20.12-b01
Comment 1 brkumar121 2013-10-08 17:10:14 UTC
Created attachment 140897 [details]
IDE log
Comment 2 Tomas Mysik 2013-10-11 12:21:57 UTC
I guess this is about editor, right...
Comment 3 Xenos 2017-02-20 10:19:37 UTC
I'm unsure but this seems to be resolved since a while?

class Foo {
/** @var Bar $bar */
public $bar; 
}

class Bar {
public $naz;
}

$foo = new Foo();
$foo->ba|Ctrl+space shows "bar" (NB8.2)
$foo->bar->na|Ctrl+Space shows "naz" (NB8.2)