Skip to content

Commit fb65b0d

Browse files
authored
Apply fixes from StyleCI (#20)
1 parent 4607674 commit fb65b0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ public function register()
6464
private function formatDuration($seconds)
6565
{
6666
if ($seconds < 0.001) {
67-
return round($seconds * 1000000) . 'μs';
67+
return round($seconds * 1000000).'μs';
6868
} elseif ($seconds < 1) {
69-
return round($seconds * 1000, 2) . 'ms';
69+
return round($seconds * 1000, 2).'ms';
7070
}
7171

72-
return round($seconds, 2) . 's';
72+
return round($seconds, 2).'s';
7373
}
7474
}

0 commit comments

Comments
 (0)