Actions
Task #38336
closedCleanup: Remove empty init-method from EXT:tsconfig_help
Start date:
2012-06-23
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
easy
Sprint Focus:
Description
In EXT:tsconfig_help the method init() just call his parent.
/** * Initializes the Module * @return void */ function init() { parent::init(); }
This is not needed, because parent method are always called, even if an extending class does not specify this explicitly.
Actions