Skip to content

Commit 27c914c

Browse files
Refactor TerminalService.php to replace multiple spaces with a single arrow symbol in the action string
1 parent 6fc2cb1 commit 27c914c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/TerminalService.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private function setStyle(): array
117117
$spaces,
118118
preg_replace('#({[^}]+})#', '<fg=yellow>$1</>', $uri),
119119
$dots,
120-
str_replace(' ', '', $action ?? ''),
120+
str_replace(' ', '', $action),
121121
), $this->verbose && ! empty($middleware) ? "<fg=#6C7280>$middleware</>" : null];
122122
})
123123
->flatten()

0 commit comments

Comments
 (0)