| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 85 | public static function factory($columnDefinition, $type) |
|
| 36 | { |
||
| 37 | 85 | $name = $columnDefinition['column_name']; |
|
| 38 | 85 | $hasDefault = $columnDefinition['column_default'] !== null; |
|
| 39 | 85 | $isNullable = $columnDefinition['is_nullable']; |
|
| 40 | 85 | return new static($name, $type, $hasDefault, $isNullable); |
|
| 41 | } |
||
| 42 | |||
| 75 |