Task #67908
closedCleanup usage of use for Utility-namespace
100%
Description
Replace usages of
use TYPO3\CMS\Core\Utility;
with direct use-statements of the class we really want to use, like
use TYPO3\CMS\Core\Utility\GeneralUtility;
This way no Utility\GeneralUtility::something is used anymore (which is only used in some few cases) but we replace it with GeneralUtility::something everywhere and it makes it easier to see which classes are really "used".
Updated by Gerrit Code Review over 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/40919
Updated by Gerrit Code Review over 9 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/40919
Updated by Gerrit Code Review over 9 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/40919
Updated by Stefan Neufeind over 9 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 03dd0190bf18b40426bf545ea138491c5841a8c7.