Important
The effects of this tag are not yet fully implemented in PhpDocumentor2.
The @since tag indicates at which version did the associated Structural Elements became available.
@since [version] [<description>]
The @since tag can be used to indicate since which version specific Structural Elements have become available.
This information can be used to generate a set of API Documentation where the consumer is informed which application version is necessary for a specific element.
The version MUST follow the same rules as the @version tag’s vector and MAY have a description to provide additional information.
This tag can occur multiple times within a PHPDoc. In that case, each occurrence is treated as an entry to a change log. It is RECOMMENDED that you also provide a description to each such tag.
phpDocumentor shows the version information with the documented element.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /**
* @since 1.0.1 First time this was introduced.
*
* @return integer Indicates the number of items.
*/
function count()
{
<...>
}
/**
* @since 1.0.2 Added the $b argument.
* @since 1.0.1 Added the $a argument.
* @since 1.0.0
*
* @return void
*/
function dump($a, $b)
{
<...>
}
|