We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f03135 commit edd0445Copy full SHA for edd0445
src/Util/Show.php
@@ -135,11 +135,12 @@ public static function liteBlock(
135
136
// format type
137
if ($type) {
138
+ $upType = strtoupper($type);
139
// add style
140
if ($style && $color->hasStyle($style)) {
141
$fmtType = sprintf('<%s>[%s]</%s> ', $style, $upType, $style);
142
} else {
- $fmtType = sprintf('[%s]', $upType = strtoupper($type));
143
+ $fmtType = sprintf('[%s]', $upType);
144
}
145
146
0 commit comments