| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | final class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Builds the unsigned string for column. Defaults to unsupported. |
||
| 16 | * |
||
| 17 | * @return string a string containing UNSIGNED keyword. |
||
| 18 | */ |
||
| 19 | 7 | protected function buildUnsignedString(): string |
|
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Builds the full string for the column's schema. |
||
| 26 | * |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | 7 | public function asString(): string |
|
| 40 |