Skip to content
Snippets Groups Projects
Commit 1e109fd2 authored by Timo Poppinga's avatar Timo Poppinga Committed by Daniel Goerz
Browse files

[BUGFIX] Fixes annotation of parameter in ExtensionConfiguration

Add mixed annotation of parameter $value in ExtensionConfiguration
of method set. The static code analysis tools line phpstan can deal
with it

Resolves: #92181
Releases: master, 10.4
Change-Id: I9dc39737a7f6009c2dcb736c04131018a88ee36b
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/65541


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarAlexander Schnitzler <git@alexanderschnitzler.de>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarAlexander Schnitzler <git@alexanderschnitzler.de>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
parent 042ab370
No related merge requests found
......@@ -143,7 +143,7 @@ class ExtensionConfiguration
*
* @param string $extension Extension name
* @param string $path Configuration path to set - eg. "featureCategory/coolThingIsEnabled"
* @param null $value The value. If null, unset the path
* @param mixed|null $value The value. If null, unset the path
* @internal
*/
public function set(string $extension, string $path = '', $value = null): void
......
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