Breaking: #101186 - Strict typing in UnableToLinkException
See forge#101186
Description
The class constructor in
\TYPO3\
is now strictly typed. In addition, the variable
$link has type
string.
Impact
The class constructor is now strictly typed.
Affected installations
TYPO3 sites using the
\TYPO3\ exception.
Migration
Ensure that the class constructor is called properly, according to the changed signature:
public function __construct(
string $message = '',
int $code = 0,
?\Throwable $previous = null,
string $linkText = ''
);
Copied!