From 9769054cf9f7697fd8a8768ea81437a60fa2fe8b Mon Sep 17 00:00:00 2001 From: Alexander Schnitzler <git@alexanderschnitzler.de> Date: Mon, 11 May 2020 17:33:41 +0200 Subject: [PATCH] [TASK] Fix phpstan checkFunctionArgumentTypes errors in ext:core LinkHandling This patch fixes incompatible type usage in function arguments and is preparatory work for introducing native type hints and strict mode in all core files. Releases: master, 10.4 Resolves: #92256 Change-Id: Iffa47071ef75ff1453d76864acef853240da81df Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/65670 Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Benni Mack <benni@typo3.org> Tested-by: Oliver Bartsch <bo@cedev.de> Tested-by: Daniel Goerz <daniel.goerz@posteo.de> Reviewed-by: Benni Mack <benni@typo3.org> Reviewed-by: Oliver Bartsch <bo@cedev.de> Reviewed-by: Daniel Goerz <daniel.goerz@posteo.de> --- .../core/Classes/LinkHandling/LegacyLinkNotationConverter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php b/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php index 9bf76ab24e8d..0838e09ca74f 100644 --- a/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php +++ b/typo3/sysext/core/Classes/LinkHandling/LegacyLinkNotationConverter.php @@ -71,7 +71,7 @@ class LegacyLinkNotationConverter // Resolve FAL-api "file:UID-of-sys_file-record" and "file:combined-identifier" if (stripos($linkParameter, 'file:') === 0) { $result = $this->getFileOrFolderObjectFromMixedIdentifier(substr($linkParameter, 5)); - } elseif (GeneralUtility::validEmail(parse_url($linkParameter, PHP_URL_PATH))) { + } elseif (GeneralUtility::validEmail((string)parse_url($linkParameter, PHP_URL_PATH))) { $result['type'] = LinkService::TYPE_EMAIL; $result['email'] = $linkParameter; } elseif (strpos($linkParameter, 'tel:') === 0) { -- GitLab