Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class Stats |
||
12 | { |
||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | private static $running = 0; |
||
17 | |||
18 | /** |
||
19 | * @return int |
||
20 | */ |
||
21 | public static function running() : int |
||
22 | { |
||
23 | return self::$running; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | */ |
||
28 | public static function created() : void |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | */ |
||
35 | public static function finished() : void |
||
40 |