Community
Participate
Working Groups
Build Identifier: M20100909-0800 PHPDoc comments using @param to specify type of function parameter does not invoke content assist. Workaround by specifying @var within function, but the workaround is redundant as @param has specified type. Reproducible: Always Steps to Reproduce: /** * Description * @param classA $a * @param classB $b * @param classC $c */ public function xyz($a, $b, $c) { $a->| // content assist should invoke to show methods from classA but doesn't even when pressing CTRL+SPACE } Current workaround: inline commenting with /* @var $a classA */ but since @param has specified type, this step should be redundant.
Update: Content Assist does not automatically invoke, but upon pressing CTRL+SPACE it does