The @todo tag is used to indicate whether any development activities should still be executed on associated Structural Elements.
@todo [description]
The @todo tag is used to indicate that an activity surrounding the associated Structural Elements must still occur. Each tag MUST be accompanied by a description that communicates the intent of the original author; this could however be as short as providing an issue number.
Besides showing the tag information with the associated documentable element phpDocumentor will also generate a report containing all todo items with references to their elements.
Hint
To document TODO items inline in the code, consider using TODO markers.
1 2 3 4 5 6 7 8 9 10 11 | /**
* Counts the number of items in the provided array.
*
* @todo add an array parameter to count
*
* @return int Returns the number of elements.
*/
function count()
{
<...>
}
|