Skip to content

Commit 66ba8de

Browse files
committed
fix dumped markup
1 parent 0e610a8 commit 66ba8de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/VarDumper/Dumper/HtmlDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ protected function style(string $style, string $value, array $attr = []): string
879879
} elseif ('meta' === $style && isset($attr['title'])) {
880880
$dumpTitle = esc($this->utf8Encode($attr['title']));
881881
} elseif ('private' === $style) {
882-
$dumpTitle = sprintf('Private property defined in class:
`%s`"', esc($this->utf8Encode($attr['class'])));
882+
$dumpTitle = sprintf('Private property defined in class:
`%s`', esc($this->utf8Encode($attr['class'])));
883883
}
884884

885885
if (isset($attr['ellipsis'])) {

0 commit comments

Comments
 (0)