Skip to content

Commit 6870e0f

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: fix dumped markup
2 parents d79f638 + 6c8c994 commit 6870e0f

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
@@ -854,7 +854,7 @@ protected function style(string $style, string $value, array $attr = []): string
854854
} elseif ('meta' === $style && isset($attr['title'])) {
855855
$dumpTitle = esc($this->utf8Encode($attr['title']));
856856
} elseif ('private' === $style) {
857-
$dumpTitle = sprintf('Private property defined in class:
`%s`"', esc($this->utf8Encode($attr['class'])));
857+
$dumpTitle = sprintf('Private property defined in class:
`%s`', esc($this->utf8Encode($attr['class'])));
858858
}
859859

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

0 commit comments

Comments
 (0)