Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class FailedToMapCommand extends Exception |
||
10 | { |
||
11 | public static function className(string $commandClassName): self |
||
12 | { |
||
13 | return new static('Failed to map the class name for command ' . $commandClassName); |
||
14 | } |
||
15 | |||
16 | public static function methodName(string $commandClassName): self |
||
19 | } |
||
20 | } |
||
21 |