Skip to content

Commit

Permalink
use namespaced css class
Browse files Browse the repository at this point in the history
  • Loading branch information
rodber committed Jun 3, 2024
1 parent bf73a06 commit 42cb499
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ private function handleDumpVars(): void
return;
}
$this->body .= <<<HTML
<div class="dump">{$dump}</div>
<div class="xrdebug-dump">{$dump}</div>
HTML;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/MessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public function testWithDumpVars(): void
$withVariables->vars()[0]
);
$expected = $body . <<<HTML
<div class="dump"><pre>
<div class="xrdebug-dump"><pre>
Arg#1 <span class="chv-dump-string">string</span> {$variable} <em><span class="chv-dump-emphasis">(length={$length})</span></em></pre></div>
HTML;
$this->assertSame($expected, $withVariables->toArray()['body']);
Expand Down

0 comments on commit 42cb499

Please sign in to comment.