We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 582bd9b commit 9956682Copy full SHA for 9956682
Classes/Finisher/FinisherRunner.php
@@ -49,17 +49,11 @@ public function callFinishers(
49
);
50
}
51
if (is_subclass_of($class, $this->interface)) {
52
- if (!isset($dpSettings['config'])) {
53
- $finisherSettings['config'] = [];
54
- } else {
55
- $finisherSettings['config'] = (array)$finisherSettings['config'];
56
- }
57
-
58
/** @var AbstractFinisher $finisher */
59
$finisher = GeneralUtility::makeInstance(
60
$class,
61
$mail,
62
- $finisherSettings['config'],
+ (array)$finisherSettings['config'] ?? [],
63
$settings,
64
$formSubmitted,
65
$actionMethodName,
0 commit comments