Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Aug 13, 2024
1 parent ca8b19f commit b391edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ private function loadColumnSchema(array $info): ColumnSchemaInterface
$dbType = $info['data_type'];
$column = $this->getColumnFactory()->fromDbType($dbType, [
'scale' => $info['data_scale'],
'precision' => $info['data_precision']
'precision' => $info['data_precision'],
]);
$column->name($info['column_name']);
$column->allowNull($info['nullable'] === 'Y');
Expand Down

0 comments on commit b391edf

Please sign in to comment.