1 | <?php |
||
8 | class Config |
||
9 | { |
||
10 | private static $config = []; |
||
11 | |||
12 | /** |
||
13 | * Load a config file, it will replace |
||
14 | * all the currently loaded configuration. |
||
15 | */ |
||
16 | public static function load($file): void |
||
21 | |||
22 | /** |
||
23 | * Get all the configuration options. |
||
24 | * |
||
25 | * @return array |
||
26 | */ |
||
27 | public static function all() |
||
31 | } |
||
32 |