Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | final class MetadataStorageError extends RuntimeException implements MigrationException |
||
10 | { |
||
11 | 1 | public static function notUpToDate() : self |
|
12 | { |
||
13 | 1 | return new self('The metadata storage is not up to date, please run the sync-metadata-storage command to fix this issue.'); |
|
14 | } |
||
15 | |||
16 | 2 | public static function notInitialized() : self |
|
19 | } |
||
20 | } |
||
21 |