Skip to content

Commit 5116a76

Browse files
authored
fix coding styles
1 parent 12bae2d commit 5116a76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Commands/Concerns/InteractsWithIO.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ public function requestInfo($request, $verbosity = null)
9595

9696
$url = parse_url($request['url'], PHP_URL_PATH) ?: '/';
9797

98-
$memory = number_format(round(memory_get_usage()/1024/1204, 2), 2, '.', '');
98+
$memory = number_format(round(memory_get_usage() /1024 /1204, 2), 2, '.', '');
9999

100100
$duration = number_format(round($request['duration'], 2), 2, '.', '');
101101

102102
['method' => $method, 'statusCode' => $statusCode] = $request;
103103

104-
$dots = str_repeat('.', max($terminalWidth - strlen($method.$url.$duration.$memory ) - 19, 0));
104+
$dots = str_repeat('.', max($terminalWidth - strlen($method.$url.$duration.$memory) - 19, 0));
105105

106106
if (empty($dots) && ! $this->output->isVerbose()) {
107107
$url = substr($url, 0, $terminalWidth - strlen($method.$duration) - 15 - 3).'...';

0 commit comments

Comments
 (0)