@todo
@todo
Document changes that will be made in the future
by Gregory Beaver
Copyright 2002, Gregory Beaver
(phpDocumentor 1.0+)
@todo
information string [unspecified format]
Description
The @todo tag may be used to document future changes to any element that can be documented (global variable, include, constant, function, define, class, variable, method, page). phpDocumentor will display the information string unaltered.
Use @todo to document planned changes to an element that have not been implemented
Example
Here's an example:
/**
* Page-level DocBlock
* @package unfinished
* @todo finish the functions on this page
*/
/**
* function datafunction
* @todo make it do something
*/
function datafunction()
{
}