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,46 @@
.. include:: /Includes.rst.txt
.. _deprecation-85123:
===================================================
Deprecation: #85123 - Constants related to Services
===================================================
See :issue:`85123`
Description
===========
The following constants have been marked as deprecated, and will be removed in TYPO3 v10.0.
- :php:`T3_ERR_SV_GENERAL`
- :php:`T3_ERR_SV_NOT_AVAIL`
- :php:`T3_ERR_SV_WRONG_SUBTYPE`
- :php:`T3_ERR_SV_NO_INPUT`
- :php:`T3_ERR_SV_FILE_NOT_FOUND`
- :php:`T3_ERR_SV_FILE_READ`
- :php:`T3_ERR_SV_FILE_WRITE`
- :php:`T3_ERR_SV_PROG_NOT_FOUND`
- :php:`T3_ERR_SV_PROG_FAILED`
The according constants have been moved to class constants of :php:`TYPO3\CMS\Core\Service\AbstractService`.
Impact
======
These constants will not trigger a deprecation warning, however they will result in a fatal error in TYPO3 v10.0.
Affected Installations
======================
TYPO3 Installations with extensions using these constants or having custom services using these constants.
Migration
=========
Use the class constants provided within :php:`TYPO3\CMS\Core\Service\AbstractService`.
.. index:: PHP-API, FullyScanned