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,44 @@
.. include:: /Includes.rst.txt
.. _deprecation-57594:
=======================================================================
Deprecation: #57594 - Optimize extbase ReflectionService Cache handling
=======================================================================
See :issue:`57594`
Description
===========
In the process of streamlining the internal reflection / docparser cache handling, the following
methods of the PHP class :php:`ClassSchema` have been deprecated:
* :php:`addProperty()`
* :php:`setModelType()`
* :php:`getModelType()`
* :php:`setUuidPropertyName()`
* :php:`getUuidPropertyName()`
* :php:`markAsIdentityProperty()`
* :php:`getIdentityProperties()`
Impact
======
Installations using the above methods will trigger a :php:`E_USER_DEPRECATED` warning.
Affected Installations
======================
Installations using one of the mentioned methods instead of the ReflectionService API.
Migration
=========
Use the class :php:`ReflectionService` as API which will be automatically initialized on
instantiation.
.. index:: PHP-API, FullyScanned, ext:extbase