Skip to content

Commit 37399ad

Browse files
Fix original argument coloring
1 parent 18def64 commit 37399ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Hook/Debug.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected function getArgumentOutput(array $args): string
7676
{
7777
$out = ' <comment>Original arguments:</comment>' . PHP_EOL;
7878
foreach ($args as $name => $value) {
79-
$out .= ' <question>' . $name . '</question> => ' . $value . PHP_EOL;
79+
$out .= ' <fg=cyan>' . $name . ' =></> ' . $value . PHP_EOL;
8080
}
8181
return $out;
8282
}

0 commit comments

Comments
 (0)