| 1 | <?php declare(strict_types=1); |
||
| 5 | final class GlobalState |
||
| 6 | { |
||
| 7 | static protected $state = []; |
||
| 8 | |||
| 9 | public static function get(): array |
||
| 13 | |||
| 14 | public static function reset() |
||
| 18 | |||
| 19 | public static function set(string $key, int $value) |
||
| 23 | |||
| 24 | public static function incr(string $key, int $value = 1) |
||
| 32 | } |
||
| 33 |