Skip to content

Commit a1c92ba

Browse files
committed
fixed missing return statement
1 parent 066f27b commit a1c92ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Converters/ElapsedTimeConverter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{
99
public static function convert(float $microseconds): string
1010
{
11-
DateTime::createFromFormat(
11+
return DateTime::createFromFormat(
1212
'U.u',
1313
number_format($microseconds, 6, '.', '')
1414
)->format('H:i:s.u');

0 commit comments

Comments
 (0)