| Total Complexity | 1 |
| Total Lines | 7 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class ColumnSchemaBuilderTest extends AbstractColumnSchemaBuilderTest |
||
| 11 | { |
||
| 12 | protected ?string $driverName = 'pgsql'; |
||
| 13 | |||
| 14 | public function getColumnSchemaBuilder($type, $length = null): ColumnSchemaBuilder |
||
| 15 | { |
||
| 16 | return new ColumnSchemaBuilder($type, $length, $this->getConnection()); |
||
| 17 | } |
||
| 19 |