| Summary: | Code completion does not work inside "inline" variable type comment | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | sparrow Mising name <wrobel> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED WONTFIX | QA Contact: | |
| Severity: | normal | ||
| Priority: | P1 | CC: | silviya, wywrzal |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows 7 | ||
| Whiteboard: | |||
CA works only in phpDoc comment but phpDoc comment can be used for variable type comment. See:
$siteStructure = Zend_Registry::get('Zend_Navigation');
/** @var Zend_Navigation $siteStructure */
Right, verified for phpDoc. Closing Closed |
Code completion does not work inside "inline" variable type comment. E.g. $siteStructure = Zend_Registry::get('Zend_Navigation'); /* @var $siteStructure Zend_Navigation */ When I started to type /* @ as in the example above I would like to be suggested @var then the $siteStructure variable name and the class name...