The @ignore tag is used to tell phpDocumentor that Structural Elements are not to be processed by phpDocumentor.
@ignore [<description>]
The @ignore tag tells phpDocumentor that the Structural Elements associated with the tag are not to be processed. An example of use might be to prevent duplicate documenting of conditional constants.
It is RECOMMENDED (but not required) to provide an additional description stating why the associated element is to be ignored.
Structural Elements tagged with the @ignore tag will be not be processed.
1 2 3 4 5 6 7 8 9 10 11 | if ($ostest) {
/**
* This define will either be 'Unix' or 'Windows'
*/
define("OS","Unix");
} else {
/**
* @ignore
*/
define("OS","Windows");
}
|