Deprecation: #89673 - Extbase's WebRequest and WebResponse
See forge#89673
Description
Both classes \TYPO3\
and \TYPO3\
have been marked as deprecated. Along with their deprecation, all relevant logic has been moved into their parent
classes \TYPO3\
and \TYPO3\
.
This is done to simplify the request/response handling of Extbase and to ease the transition towards a PSR-7 compatible handling.
Impact
There is no impact yet as the "web" versions of the request and response are still used by Extbase. The only thing that is worth mentioning is that those who implement custom requests and/or responses should derive from the non "web" versions now.
Affected Installations
All installations that implement custom request/response objects that derive from
\TYPO3\
and \TYPO3\
.
Those who don't change the request/response handling, will not realize this change.
Migration
All installations that implement custom request/response objects that derive from
\TYPO3\
and \TYPO3\
should now
derive from \TYPO3\
(and override the $format
property) and
\TYPO3\
(and override the shutdown
method).