@@ -40,6 +40,9 @@ |
||
40 | 40 | static::$timers = []; |
41 | 41 | } |
42 | 42 | |
43 | + /** |
|
44 | + * @param string $format |
|
45 | + */ |
|
43 | 46 | final static protected function processTimerValue($value, $format) { |
44 | 47 | if ($value[0]) { |
45 | 48 | return static::formatTime((static::getCurrentTime() - $value[1]) + $value[2], $format); |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types=1); |
|
2 | +declare(strict_types = 1); |
|
3 | 3 | |
4 | 4 | namespace Ayesh\PHP_Timer; |
5 | 5 |