1 | <?php |
||
7 | class InvalidPlugin extends Exception |
||
8 | { |
||
9 | public static function doesntImplementPluginInterface(string $class): InvalidPlugin |
||
13 | |||
14 | public static function configurationFileNotFound(string $class, string $configurationPath): InvalidPlugin |
||
18 | |||
19 | public static function configurationMustBeArray(string $class, string $configurationPath): InvalidPlugin |
||
23 | |||
24 | public static function serviceFileNotFound(string $class, string $servicePath): InvalidPlugin |
||
28 | } |
||
29 |