| Summary: | [Regression] CA does not work in certain cases | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Sylvia Tancheva <silviya> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED FIXED | QA Contact: | Ilina Stefanova <ilina.s> |
| Severity: | major | ||
| Priority: | P3 | CC: | zhaozhongwei |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | All | ||
| Whiteboard: | |||
fixed in head change status Verified. |
See the example code and note the comments: <?php class Foo { public $test; } class Bar { public function test() { $Foo = new Foo(); $Foo->test; // code assist works here $name = $Foo-> // code assist doesn't work here } } function test() { $Foo = new Foo(); $Foo->test; // code assist works $test = $Foo-> // code assist doesn't work } $Foo = new Foo(); $Foo->test; // code assist works $test = $Foo->test; // interestingly code assist works ?>