Project

General

Profile

Actions

Task #37339

closed

Remove @author annotations in /typo3/sysext/

Added by Wouter Wolters almost 12 years ago. Updated over 11 years ago.

Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2012-05-20
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
Sprint Focus:

Description

Remove all author annotations in functions doc comment.

False:

/** * This class provides XYZ plugin implementation. * * @author John Doe <> * @author Jane Doe <>
*/
function fooBar(){
// Some code
}

Correct:

/** * This class provides XYZ plugin implementation. * * @author John Doe <> * @author Jane Doe <>
*/
class xyzImplementation {
// Some code
}

Actions

Also available in: Atom PDF