| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class EnvVariableTypeEnum |
||
| 6 | { |
||
| 7 | public const SHARED_ENV_VARIABLE = 'sharedEnvVariable'; |
||
| 8 | public const SHARED_SECRET = 'sharedSecret'; |
||
| 9 | public const IMAGE_ENV_VARIABLE = 'imageEnvVariable'; |
||
| 10 | public const CONTAINER_ENV_VARIABLE = 'containerEnvVariable'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @return string[] |
||
| 14 | */ |
||
| 15 | public static function getEnvVariableTypes(): array |
||
| 20 |