| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | trait RequiresConfig |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Get an environment value. If $default is not set and the environment isn't set either this will error. |
||
| 12 | * |
||
| 13 | * @param string $key |
||
| 14 | * @param mixed $default |
||
| 15 | * @throws LogicException Error if environment variable is required, but not configured |
||
| 16 | * @return mixed |
||
| 17 | */ |
||
| 18 | public static function getEnv(string $key, $default = null) |
||
| 30 |