@ignore

(phpDocumentor 0.1+ )

@ignore --  Prevents documentation of the following element.

Description

@ignore

Use @ignore to prevent phpDocumentor from documenting and element, such as a duplicate element.

Here is an example of how to use @ignore:

if ($ostest)
{
	/**
	* This define will either be 'Unix' or 'Windows'
	*/
	define("OS","Unix");
} else
{
	/**
	* @ignore
	*/
	define("OS","Windows");
}

Tag Documentation written by Gregory Beaver <cellog@users.sourceforge.net>
Copyright © 2002, Gregory Beaver