Skip to content

Commit 58486f7

Browse files
committed
[BUGFIX] Fix undefined array key with PHP 8 in FinisherRunner
Resolves: #778
1 parent b9d27f8 commit 58486f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Finisher/FinisherRunner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function callFinishers(
5252
$finisher = GeneralUtility::makeInstance(
5353
$class,
5454
$mail,
55-
(array)$finisherSettings['config'] ?? [],
55+
$finisherSettings['config'] ?? [],
5656
$settings,
5757
$formSubmitted,
5858
$actionMethodName,

0 commit comments

Comments
 (0)