Files
cms-core/Documentation/Changelog/9.0/Deprecation-83093-ReplaceCascadeWithTYPO3CMSExtbaseAnnotationORMCascade.rst
T

38 lines
968 B
ReStructuredText

.. include:: /Includes.rst.txt
.. _deprecation-83093:
==========================================================================================
Deprecation: #83093 - Replace @cascade with @TYPO3\\CMS\\Extbase\\Annotation\\ORM\\Cascade
==========================================================================================
See :issue:`83093`
Description
===========
The :php:`@cascade` annotation has been deprecated and must be replaced with the doctrine annotation
:php:`@TYPO3\CMS\Extbase\Annotation\ORM\Cascade`.
Impact
======
From version 9.0 on, :php:`@cascade` is deprecated and will be removed in version 10.
Affected Installations
======================
All extensions that use :php:`@cascade`
Migration
=========
Use :php:`@TYPO3\CMS\Extbase\Annotation\ORM\Cascade` instead.
A typical example was :php:`@cascade remove` which is now :php:`@TYPO3\CMS\Extbase\Annotation\ORM\Cascade("remove")`
.. index:: PHP-API, ext:extbase, FullyScanned