| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Config extends Data { |
||
| 9 | |||
| 10 | /** @var mixed[] */ |
||
| 11 | protected static $config; |
||
| 12 | |||
| 13 | final public static function load($config) { |
||
| 14 | static::$config = $config; |
||
| 15 | } |
||
| 16 | |||
| 17 | protected static function getAll() { |
||
| 18 | return static::$config; |
||
| 19 | } |
||
| 20 | |||
| 21 | public static function set($key, $value) { |
||
| 23 | } |
||
| 24 | |||
| 25 | } |
||
| 26 |