Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | final class EnvVars |
||
6 | { |
||
7 | public const KEY_STRING = 'STRING'; |
||
8 | public const KEY_INT = 'INT'; |
||
9 | public const KEY_FLOAT = 'FLOAT'; |
||
10 | public const KEY_JSON = 'JSON'; |
||
11 | public const KEY_SERIALIZED = 'SERIALIZED'; |
||
12 | public const KEY_BOOLISH_TRUE = 'BOOLISH_TRUE'; |
||
13 | public const KEY_BOOLISH_FALSE = 'BOOLISH_FALSE'; |
||
14 | |||
15 | public static function getEmpty(): array |
||
16 | { |
||
17 | return []; |
||
18 | } |
||
19 | |||
20 | public static function getFilled(): array |
||
30 | ]; |
||
31 | } |
||
33 |