| Total Complexity | 5 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Builds the unsigned string for column. Defaults to unsupported. |
||
| 13 | * |
||
| 14 | * @return string a string containing UNSIGNED keyword. |
||
| 15 | */ |
||
| 16 | protected function buildUnsignedString(): string |
||
| 17 | { |
||
| 18 | return $this->isUnsigned() ? ' UNSIGNED' : ''; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function __toString(): string |
||
| 35 | } |
||
| 36 | } |
||
| 37 |