| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class LangException extends BaseException |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $name |
||
| 28 | * @return LangException |
||
| 29 | */ |
||
| 30 | public static function translationsNotFound(string $name): LangException |
||
| 33 | } |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return LangException |
||
| 37 | */ |
||
| 38 | public static function misconfiguredDefaultConfig(): LangException |
||
| 41 | } |
||
| 42 | } |