Skip to content

Commit a563c5a

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: fix dumped markup
2 parents 26a06b4 + 4ad10cf commit a563c5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)