Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
Migration | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace Engelsystem\Database\Migration; |
6 | |
7 | use Illuminate\Database\Schema\Builder as SchemaBuilder; |
8 | |
9 | abstract class Migration |
10 | { |
11 | /** |
12 | * Migration constructor. |
13 | */ |
14 | public function __construct(protected SchemaBuilder $schema) |
15 | { |
16 | } |
17 | } |