Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
10 | class SchemaFileNotFoundException extends RuntimeException implements FriendlyExceptionInterface |
||
11 | { |
||
12 | public function __construct(string $file) |
||
15 | } |
||
16 | |||
17 | public function getName(): string |
||
18 | { |
||
19 | return 'Schema file not found'; |
||
20 | } |
||
21 | |||
22 | public function getSolution(): ?string |
||
25 | } |
||
26 | } |
||
27 |