Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | public static function new(string $version) : self |
||
14 | { |
||
15 | return new self(sprintf( |
||
16 | 'Cannot load a migrations with the name "%s" because it is a number reserved by Doctrine Migrations.' |
||
17 | . PHP_EOL |
||
18 | . 'It is used to revert all migrations including the first one.', |
||
19 | $version |
||
20 | )); |
||
23 |