| Summary: | [PHP 5.3] Content assist does not suggest the class container in class variable comment block | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Kalin <kalin.a> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P1 | CC: | ganoro, silviya |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
In my opinion, you should use the comment below for class member
<?php
namespace ns;
class CCC{
/**
* @var |\ns\CCC //CA will be suggested at curesor position when you press ctrl+space
*/
var $rt = 435;
}
fixed in head Verified. Ilina Stefanova |
Build Identifier: 2.2.0.v20100621 Have the following code in php file under PHP 5.3 project: <?php namespace ns; class CCC{ /*@var $rt \ns\| */ //invoke Content Assist at cursor position | var $rt = 435; } Expected: The class container CCC should be suggested. Actual: No completion available. Reproducible: Always