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,40 @@
.. include:: /Includes.rst.txt
.. _deprecation-94367:
==============================================
Deprecation: #94367 - Extbase ReferringRequest
==============================================
See :issue:`94367`
Description
===========
To further prepare Extbase towards PSR-7 compatible requests, Extbase class
:php:`TYPO3\CMS\Extbase\Mvc\Web\ReferringRequest` has been deprecated.
Impact
======
Creating an instance of :php:`ReferringRequest` a PHP :php:`E_USER_DEPRECATED`
error.
Affected Installations
======================
:php:`ReferringRequest` has been mostly Extbase internal and rarely used in
Extbase extensions, probably only in cases where
:php:`ActionController->forwardToReferringRequest()` is overridden.
The extension scanner will find usages with a strong match.
Migration
=========
Extbase internally, :php:`ReferringRequest` has only been used to
immediately create a :php:`ForwardResponse` from it. Consuming extensions
should follow his approach and create a :php:`ForwardResponse` directly.
.. index:: PHP-API, FullyScanned, ext:extbase