| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class ColumnSchemaBuilderTest extends AbstractColumnSchemaBuilderTest |
||
| 12 | { |
||
| 13 | public ?string $driverName = 'sqlite'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param string $type |
||
| 17 | * @param int $length |
||
| 18 | * |
||
| 19 | * @return ColumnSchemaBuilder |
||
| 20 | */ |
||
| 21 | public function getColumnSchemaBuilder($type, $length = null) |
||
| 22 | { |
||
| 23 | return new ColumnSchemaBuilder($type, $length, $this->getConnection()); |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | public function typesProvider(): array |
||
| 41 | ]], |
||
| 42 | ]; |
||
| 45 |