8000 fix unused variable warning · symfony/symfony@cf28474 · GitHub
[go: up one dir, main page]

Skip to content

Commit cf28474

Browse files
Michal Piotrowskifabpot
authored andcommitted
fix unused variable warning
1 parent 515007e commit cf28474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/PhpUnit/ClockMock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public static function microtime($asFloat = false)
6666
return self::$now;
6767
}
6868

69-
return sprintf("%0.6f %d\n", $now - (int) $now, (int) self::$now);
69+
return sprintf("%0.6f %d\n", self::$now - (int) self::$now, (int) self::$now);
7070
}
7171

7272
public static function register($class)

0 commit comments

Comments
 (0)
0