Skip to content
Snippets Groups Projects
Commit f8d2394d authored by Alexander Schnitzler's avatar Alexander Schnitzler Committed by Christian Kuhn
Browse files

[TASK] Fix phpstan checkFunctionArgumentTypes errors in ext:core Site

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: #92272
Change-Id: I83c32dfcd22dfb9d3e5f4d968ab5290f550f3e79
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/65667


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 392fb64d
Branches
Tags
No related merge requests found
......@@ -152,7 +152,7 @@ class NullSite implements SiteInterface
'flag' => 'flags-multiple'
]);
}
$pageTs = BackendUtility::getPagesTSconfig($pageId);
$pageTs = BackendUtility::getPagesTSconfig((int)$pageId);
$pageTs = $pageTs['mod.']['SHARED.'] ?? [];
$disabledLanguages = GeneralUtility::intExplode(',', $pageTs['disableLanguages'] ?? '', true);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment