Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | 15 | public function getSchemaBuilder(): \Illuminate\Database\Schema\PostgresBuilder |
|
30 | { |
||
31 | 15 | $builder = parent::getSchemaBuilder(); |
|
32 | $builder->blueprintResolver(static function ($table, $callback) { |
||
33 | 15 | return new Blueprint($table, $callback); |
|
34 | 15 | }); |
|
35 | |||
36 | 15 | return $builder; |
|
37 | } |
||
39 |