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 4607674 commit fb65b0dCopy full SHA for fb65b0d
src/ServiceProvider.php
@@ -64,11 +64,11 @@ public function register()
64
private function formatDuration($seconds)
65
{
66
if ($seconds < 0.001) {
67
- return round($seconds * 1000000) . 'μs';
+ return round($seconds * 1000000).'μs';
68
} elseif ($seconds < 1) {
69
- return round($seconds * 1000, 2) . 'ms';
+ return round($seconds * 1000, 2).'ms';
70
}
71
72
- return round($seconds, 2) . 's';
+ return round($seconds, 2).'s';
73
74
0 commit comments