Skip to content

Commit

Permalink
Issue #6012: drush migrate:fields-source vs. strict_types (#6016)
Browse files Browse the repository at this point in the history
(cherry picked from commit 6577dd5)
  • Loading branch information
nevergone authored May 28, 2024
1 parent f22b333 commit 09642f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/core/MigrateRunnerCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ public function fieldsSource(string $migrationId, $options = ['format' => 'table
foreach ($source->fields() as $machineName => $description) {
$table[] = [
'machine_name' => $machineName,
'description' => strip_tags($description),
'description' => strip_tags((string) $description),
];
}
return new RowsOfFields($table);
Expand Down

0 comments on commit 09642f3

Please sign in to comment.