I use phpdocumentor tags to document my php codes classes and function, as shown below
/**
* Module for Car
* @category Vehicle
* @version 2.0
* @since 1.0
* @link http://api.abc.example.com/v2.0/docs/#!/car
*/
My question is that, is there way to dynamically change @version and @link values. As if the version change, I do not want to go to every class and function to update the @version ad @link fields. If my system version change from v2.0 to 3.0 I would have to change documentation for all my classes and functions
/**
* Module for Car
* @category Vehicle
* @version 3.0
* @since 1.0
* @link http://api.abc.example.com/v3.0/docs/#!/car
*/
Its a tedious works to do so :-).
Any suggestions?