Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
20 | final class ConfigException extends RuntimeException implements FOSCKEditorException |
||
21 | { |
||
22 | public static function configDoesNotExist(string $name): self |
||
23 | { |
||
24 | return new static(sprintf('The CKEditor config "%s" does not exist.', $name)); |
||
25 | } |
||
26 | |||
27 | public static function invalidDefaultConfig(string $name): self |
||
30 | } |
||
31 | } |
||
32 |