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