Skip to content

Commit

Permalink
Merge branch '7.1' into 7.2
Browse files Browse the repository at this point in the history
* 7.1:
  fix dumped markup
  • Loading branch information
xabbuh committed Jan 17, 2025
2 parents 29dae22 + a563c5a commit 82b478c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dumper/HtmlDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ protected function style(string $style, string $value, array $attr = []): string
} elseif ('meta' === $style && isset($attr['title'])) {
$dumpTitle = esc($this->utf8Encode($attr['title']));
} elseif ('private' === $style) {
$dumpTitle = \sprintf('Private property defined in class:
`%s`"', esc($this->utf8Encode($attr['class'])));
$dumpTitle = \sprintf('Private property defined in class:
`%s`', esc($this->utf8Encode($attr['class'])));
}

if (isset($attr['ellipsis'])) {
Expand Down

0 comments on commit 82b478c

Please sign in to comment.