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 Sep 16, 2024
1 parent f6dee47 commit d2a30b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Column/ColumnBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ final class ColumnBuilder extends \Yiisoft\Db\Schema\Column\ColumnBuilder
{
public static function boolean(): ColumnSchemaInterface
{
return (new BooleanColumnSchema(ColumnType::BOOLEAN));
return new BooleanColumnSchema(ColumnType::BOOLEAN);
}

public static function bit(int|null $size = null): ColumnSchemaInterface
Expand Down
2 changes: 1 addition & 1 deletion tests/Provider/ColumnBuilderProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public static function buildingMethods(): array
],
StructuredColumnSchema::class,
ColumnType::STRUCTURED,
['getDbType' => 'money_currency', 'getColumns' => $columns]
['getDbType' => 'money_currency', 'getColumns' => $columns],
],
];
}
Expand Down

0 comments on commit d2a30b6

Please sign in to comment.