Deprecation: #79316 - Deprecate ArrayUtility::inArray()
See forge#79316
Description
Deprecate ArrayUtility::inArray()
Impact
Calling
Array
method will trigger a deprecation log entry. Code using this method will work until it is removed in TYPO3 v9.
Affected Installations
Any installation using the mentioned method
Array
.
Migration
Use the native
in_
function of PHP. It is strongly recommended to ensure the same type is used
everywhere and the 3rd parameter of
in_
is set to
true
to activate the type check.