Task #37338
closedRemove author annotations from folder t3lib
0%
Description
Remove all author annotations in functions doc comment.
False:
/**
* This class provides XYZ plugin implementation.
*
* @author John Doe <john.doe@example.com>
* @author Jane Doe <jane.doe@example.com>
*/
function fooBar(){
// Some code
}
Correct:
/**
* This class provides XYZ plugin implementation.
*
* @author John Doe <john.doe@example.com>
* @author Jane Doe <jane.doe@example.com>
*/
class xyzImplementation {
// Some code
}
Updated by Gerrit Code Review over 12 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/11342
Updated by Oliver Klee over 12 years ago
Shouldn't the @authors form the functions then go to the class @authors so the author information is not lost?
Updated by Gerrit Code Review over 12 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/11342
Updated by Ernesto Baschny over 12 years ago
- Status changed from Under Review to Rejected