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 - Netbeans IDE doesn't support nested level property reflection. (Like Zend studio, Zend studio has nested properties reflection) $foo->bar-> - - -
Summary: Netbeans IDE doesn't support nested level property reflection. (Like Zend stu...
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.3.1
Hardware: PC Windows 7
: P2 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-08 17:10 UTC by brkumar121
Modified: 2017-02-20 10:19 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments
IDE log (54.40 KB, text/plain)
2013-10-08 17:10 UTC, brkumar121
Details

Note You need to log in before you can comment on or make changes to this bug.
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)