Hi Dmitri and and the whole Nusphere team,
I've just discovered a really annoying bug in the code insight function, while using PhpDocumentor tags:
If I add a comment to the type of the class in parameter, PhpEd doesn't seem to recognize the paramer type anymore:
/**
*@param classA // PhpEd recognizes the parameter $a as classA
*@param classB
The Class B // PhpEd doesn't recognize the parameter $b type, although comments are normally allowed after the type in the tags
*/
public function getC(classA $a, classB $b)
{...}
A full code example is illustrated in the snapshot below :
Thanks in advance for quickly correcting this bug - maybe try to parse the type by splitting on space after @param -, as I'm trying to add tags and comments while I'm coding and I'm loosing the code insight functionality, which is vital !
Happy new Year and I wish you all the success for the years to come !
PS : I've noticed too that the comment after a "@return" tag doesn't appear in the tooltip on the Code Explorer window; too bad !