TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
@@ -0,0 +1,35 @@
.. include:: /Includes.rst.txt
.. _deprecation-79316:
=======================================================
Deprecation: #79316 - Deprecate ArrayUtility::inArray()
=======================================================
See :issue:`79316`
Description
===========
Deprecate ArrayUtility::inArray()
Impact
======
Calling :php:`ArrayUtility::inArray()` 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 :php:`ArrayUtility::inArray()`.
Migration
=========
Use the native :php:`in_array()` function of PHP. It is strongly recommended to ensure the same type is used
everywhere and the 3rd parameter of :php:`in_array()` is set to :php:`true` to activate the type check.
.. index:: PHP-API