| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 5 | final class ConfigFileException extends TelegramGitNotifierException |
||
| 6 | { |
||
| 7 | public static function settingFile(?string $settingFile = null): self |
||
| 8 | { |
||
| 9 | return new self('Something went wrong while reading settings file. Check your settings file path: ' . ($settingFile ?? 'null')); |
||
| 10 | } |
||
| 11 | |||
| 12 | public static function platformFile(?string $platform = null, ?string $platformFile = null): self |
||
| 15 | } |
||
| 16 | } |
||
| 17 |