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