Is it possible to link to another method/class/property/etc of my project, inline inside the @param tag?
Like this:
/**
* My method's description.
*
* @param string $myArg Pass here result of {@link myOtherMethod()}.
*
* @return bool
*/
public function myMethod($myArg) {
// TODO: code here.
}
...
Both
PhpDoc(phpDocumentor) anddoxygensupport inline-link to other method.For phpDocumentor
Use:
Or:
For doxygen:
Or:
Or even just: