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 Jan 11, 2025
1 parent f203914 commit 5fcf0f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/QueryBuilder/AbstractDDLQueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ public function createTable(string $table, array $columns, string $options = nul
$cols[] = "\t"
. $this->quoter->quoteColumnName($name)
. ' '
. $this->queryBuilder->buildColumnDefinition($type instanceof ColumnInterface
. $this->queryBuilder->buildColumnDefinition(
$type instanceof ColumnInterface
? $type->withName($name)
: $type
);
Expand Down

0 comments on commit 5fcf0f6

Please sign in to comment.