| Summary: | [PHP5.4] No content assist on returned array | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Sylvia Tancheva <silviya> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | zhaozhongwei |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed Verified. Closing. |
In PHP 5.4 one can call arrays after function calls. For example: function foo() { $o = new MyClass(); $a = [ $o ]; return $a; } foo()[0]->| <-- CA here should provide MyClass methods...