Skip to content

Commit d4e65d5

Browse files
shizonicdaniellienert
authored andcommitted
fix missing string casting of object type
1 parent e75bc61 commit d4e65d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Command/NodeIndexCommandController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public function showMappingCommand(): void
159159
$this->outputLine('<b>Mapping Warnings</b>');
160160
foreach ($mappingErrors->getFlattenedWarnings() as $warnings) {
161161
foreach ($warnings as $warning) {
162-
$this->outputLine($warning);
162+
$this->outputLine((string)$warning);
163163
}
164164
}
165165
}

0 commit comments

Comments
 (0)