Deprecation: #85793 - Several constants from SystemEnvironmentBuilder
See forge#85793
Description
The following constants have been deprecated and should not be used any longer:
NUL(Use"\instead)0" TAB(Use"\instead)t" SUB(Usechrinstead)(26) TYPO3_URL_ MAILINGLISTS TYPO3_URL_ DOCUMENTATION TYPO3_URL_ DOCUMENTATION_ TSREF TYPO3_URL_ DOCUMENTATION_ TSCONFIG TYPO3_URL_ CONSULTANCY TYPO3_URL_ CONTRIBUTE TYPO3_URL_ SECURITY TYPO3_URL_ DOWNLOAD TYPO3_URL_ SYSTEMREQUIREMENTS
Impact
The above constants are still defined in TYPO3 v9, but their definition will be dropped in TYPO3 v10.
Affected Installations
Constants can not be deprecated as such and using them does not trigger a PHP
E_ error.
Extensions in TYPO3 v9 should not use them any longer but switch to the alternatives already.
The extension scanner will find usages of the above constants and marks them as strong matches.
Migration
Use one of the
chr variants or replace the constant usage with the URL in your own code.