xperseguers / t3ext-extractor

TYPO3 Extension extractor
https://extensions.typo3.org/extension/extractor
GNU General Public License v2.0
15 stars 24 forks source link

Add utility method as replacement for GeneralUtility::isFirstPartOfStr() #64

Closed chesio closed 11 months ago

chesio commented 11 months ago

The utility method uses str_starts_with under the hood with a fallback to GeneralUtility::isFirstPartOfStr() on legacy installations.

Motivation: GeneralUtility::isFirstPartOfStr() has been deprecated in TYPO3 11.5 and removed in TYPO3 12

See: https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/11.5/Deprecation-95257-GeneralUtilityisFirstPartOfStr.html

Related: #58