Deprecation: #100653 - Deprecated some methods in DebugUtility
See forge#100653
Description
The following methods in
\TYPO3\
have been
marked as deprecated:
debug
In Pop Up Window () debug
Rows () print
Array ()
While
debug
and
print
duplicate already existing
methods,
debug
is discouraged to use as either external
debuggers, e.g. Xdebug or
\TYPO3\
may
be used instead.
Impact
Calling any of the aforementioned methods will trigger deprecation log entries.
Affected installations
Instances using any of the aforementioned methods are affected.
The extension scanner will find and report usages.
Migration
In case of
debug
, the identical method
debug
can be used.
The method
print
can be replaced with
view
. However,
the former method directly outputs the contents, which is not the case with
view
.
The method
debug
is deprecated without a direct
replacement, consider using an external debugger or
\TYPO3\
instead.