| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class EnvException extends BaseException |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return EnvException |
||
| 28 | */ |
||
| 29 | public static function environmentImmutable(): EnvException |
||
| 30 | { |
||
| 31 | return new static(t('exception.immutable_environment'), E_ERROR); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return EnvException |
||
| 36 | */ |
||
| 37 | public static function environmentNotLoaded(): EnvException |
||
| 40 | } |
||
| 41 | } |
||
| 42 |