Community
Participate
Working Groups
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
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