Skip to content
Snippets Groups Projects
Commit 455f8ebf authored by Alexander Schnitzler's avatar Alexander Schnitzler Committed by Daniel Goerz
Browse files

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

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


Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarSascha Egerer <sascha@sascha-egerer.de>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarSascha Egerer <sascha@sascha-egerer.de>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
parent c9d41abe
Branches
Tags
No related merge requests found
......@@ -25,9 +25,9 @@ use Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface;
interface ProviderInterface
{
/**
* An array of objects which implements the ExpressionFunctionProviderInterface
* An array of class names which implements the ExpressionFunctionProviderInterface
*
* @return ExpressionFunctionProviderInterface[]
* @return array<int, class-string>
*/
public function getExpressionLanguageProviders(): array;
......
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