Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
13 | 1 | public function __construct(Collection $migrations, $code = 0, Throwable $previous = null) |
|
14 | { |
||
15 | 1 | $title = 'Rollback migrations failed. Migrations which are not rolled back:'; |
|
16 | 1 | $message = $migrations->prepend($title) |
|
17 | 1 | ->join(PHP_EOL); |
|
18 | |||
19 | 1 | parent::__construct($message, $code, $previous); |
|
20 | } |
||
22 |