Skip to content

Commit

Permalink
[CODESTYLE] Remove double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhoffmann1979 committed Mar 22, 2024
1 parent 076eae3 commit 640dc9e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ protected function getDescription(string $table, string $column): string
&& $this->compatible[$table][$column]['resolver'] instanceof Resolver
) {
$resolver = $this->compatible[$table][$column]['resolver'];
$details = sprintf("%s Tables: %s", get_class($resolver), implode(', ', $resolver->getTargetTables()));
$details = sprintf('%s Tables: %s', get_class($resolver), implode(', ', $resolver->getTargetTables()));
}
return sprintf('[Content Publisher debug information: %s]', $details);
}
Expand Down

0 comments on commit 640dc9e

Please sign in to comment.