Maybe I don’t understand completely, but I'm trying to link the PHPDoc {@link}inline tag with a link to another method in the class (the docblock in question refers to the "verbatim alias" method)
I didn't generate anything for documentation at all, but it {@link}appears as plain text in the NetBeans method handle. Am I doing something wrong syntactically (if I compile the documentation, will this work?) Or is it just that NetBeans cannot support the built-in {@link}?
For instance:
class MyClass
{
public function __invoke($foo, $bar)
{
return $this->method($foo, $bar);
}
public function method($foo, $bar)
{
}
}
source
share