Total Complexity | 2 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class CannotCreateDbDumper extends Exception |
||
8 | { |
||
9 | public static function unsupportedDriver(string $driver): self |
||
10 | { |
||
11 | return new static("Cannot create a dumper for db driver `{$driver}`. Use `mysql`, `pgsql` or `sqlite`."); |
||
12 | } |
||
13 | |||
14 | public static function connectionDoesNotExist(string $connectionName): self |
||
17 | } |
||
18 | } |
||
19 |