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