#11151
Antnee
Member

This is exactly why I’m here! We use PHPDOC blocks in our code, so example:

/**
* Foo
*
* Function description
*
* @param STRING $bar The string that you want to foo
* @return STRING
*/
public function foo($bar){
return $bar;
}

When we look at this in the outline view we see only @return STRING

If it has to return a line from the comments, it should really be returning the first line of the comments, not the last. But really it should be showing the line after the comments so I can see “public function foo” or something