| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 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 reserved by Doctrine Migrations.' |
||
| 17 | . PHP_EOL |
||
| 18 | . 'It is used to revert all migrations including the first one.', |
||
| 19 | $version |
||
| 20 | )); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |