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 268019

Summary: Class::expr auto completion isn't working
Product: php Reporter: amobilia
Component: EditorAssignee: Tomas Mysik <tmysik>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: Dev   
Hardware: PC   
OS: Windows 10 x64   
Issue Type: DEFECT Exception Reporter:

Description amobilia 2016-09-14 13:19:07 UTC
From netcat PHP Sanity -> Class::{expr}()

Create new php class (copy code below)

class Foo {
    public static function bar(){
        echo "FooBar";
    }
}
Foo::{'bar'}();


-----
If I type "Foo::{'|'}(); " and call auto completion on the cursor (the | character), nothing is suggested.
I'm waiting for suggestion "bar"