Skip to content

Commit 7cae88f

Browse files
committed
Apply fixes from StyleCI
1 parent 8bf55ba commit 7cae88f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Commands/Concerns/InteractsWithIO.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -134,20 +134,20 @@ public function requestInfo($request, $verbosity = null)
134134
}
135135

136136
$this->output->writeln(sprintf(
137-
' <fg=%s;options=bold>%s </> <fg=cyan;options=bold>%s</> <options=bold>%s</><fg=#6C7280> %s%s%s ms</>',
137+
' <fg=%s;options=bold>%s </> <fg=cyan;options=bold>%s</> <options=bold>%s</><fg=#6C7280> %s%s%s ms</>',
138138
match (true) {
139139
$statusCode >= 500 => 'red',
140140
$statusCode >= 400 => 'yellow',
141141
$statusCode >= 300 => 'cyan',
142142
$statusCode >= 100 => 'green',
143143
default => 'white',
144144
},
145-
$statusCode,
146-
$method,
147-
$url,
148-
$dots,
149-
$memory,
150-
$duration,
145+
$statusCode,
146+
$method,
147+
$url,
148+
$dots,
149+
$memory,
150+
$duration,
151151
), $this->parseVerbosity($verbosity));
152152
}
153153

0 commit comments

Comments
 (0)