@author

(phpDocumentor 0.1+ )

@author --  Author of current element

Description

@author authorname [<authoremail@example.com>]

You may use the @author tag to document the author of any element that can be documented (global variable, include, constant, function, define, class, variable, method, page). phpDocumentor will take any text between angle brackets (< and >) and try to parse it as an email address. If successful, it will be displayed with a mailto link in the page

Here's an example:

/**
* Page-Level DocBlock example.
* displays as Gregory Beaver cellog@users.sourceforge.net, where underlined text is a "mailto:cellog@users.sourceforge.net" link
* @author Gregory Beaver 
*/
/**
* function datafunction
* another contributor authored this function
* @author Joe Shmoe
*/
function datafunction()
{
...
}