Deprecation: #84387 - Deprecated method and property in SchedulerModuleController
See forge#84387
Description
The property $CMD
and the method add
in the Scheduler
have been marked as deprecated and will be removed in TYPO3 v10.
Impact
Accessing the property or calling the method will trigger a PHP E_
error.
Affected Installations
Third party code which accesses the property directly or calls the method.
Migration
Instead of accessing the property Scheduler
, the method get
must be used which returns an instance of the \TYPO3\
enumeration.
Instead of calling the method Scheduler
, in your additional field providers
you can now extend \TYPO3\
which provides a method add
with the same API like before.