1 | <?php |
||
8 | final class Stopwatch |
||
9 | { |
||
10 | /** |
||
11 | * @return float Current time in microseconds |
||
12 | */ |
||
13 | 29 | public static function start(): float |
|
17 | |||
18 | /** |
||
19 | * @param float $start Start in microseconds |
||
20 | * @return float Duraction in microseconds |
||
21 | */ |
||
22 | 29 | public static function stop(float $start): float |
|
26 | } |
||
27 |