@copyright
Document Copyright information
by Gregory Beaver
Copyright 2002, Gregory Beaver
(phpDocumentor 0.1+)
@copyright
copyright information
Description
The @copyright tag is used to document the copyright information of any element that can be documented (global variable, include, constant, function, define, class, variable, method, page). phpDocumentor will display the copyright string unaltered.
NEW v1.2 - @copyright is now inherited by child classes from a parent class, see inline {@inheritdoc}.
Example
/**
* Page-Level DocBlock example.
* @copyright Copyright (c) 2002, Gregory Beaver
*/
/**
* function datafunction
*/
function datafunction()
{
...
}