Skip to content

Commit

Permalink
Issue #6012: drush migrate:fields-source vs. strict_types
Browse files Browse the repository at this point in the history
  • Loading branch information
nevergone committed May 27, 2024
1 parent ae9b954 commit 6577dd5
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 @@ -651,7 +651,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 6577dd5

Please sign in to comment.