@since
Document when (at which version) an element was first added to a package
Gregory Beaver
Copyright 2002, Gregory Beaver
(phpDocumentor 0.1+)
@since
version/info string [unspecified format]
Description
The @since tag may be used to document the release version of any element that can be documented (global variable, include, constant, function, define, class, variable, method, page). phpDocumentor will display the version/info string unaltered.
Use @since to document revisions, as in "This function has been a part of this package since version 2.0"
Example
Here's an example:
- /**
- * Page-level DocBlock
- * @package BigImportantProjectWithLotsofVersions
- * @version 72.5
- */
- /**
- * function datafunction
- * @since Version 21.1
- */
- function datafunction()
- {
- ...
- }