php - when to update the tag @author in PHPdoc? -
This is really a novice question.
I am trying to improve my skills with PHP, so I'm reading some libraries code I saw that many PHPdoc header (is this the correct name ? I mean:
/ ** * @complete $ configuration * @backword * @ Author Developer 1 * / ) @ author The tag is.
Assume that developer 2 makes huge changes to developer 1 and then does Github. Should developer 2 update to @ ether tag?
What is normal practice?
phpDocumentor 2 support multiple @ ethern tags:
/ ** * Class User * @ Author Styx * Author @ Second Author @ Package Application \ Model * / Class User {}
Comments
Post a Comment