Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move ArrayColumnSchema and StructuredColumnSchema from db-pgsql #882

Merged
merged 8 commits into from
Oct 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix doc [skip ci]
  • Loading branch information
Tigrov committed Oct 8, 2024
commit 8624f72cd2299d1d3602f9a648316fa3d255c508
8 changes: 4 additions & 4 deletions src/Schema/Column/StructuredColumnSchema.php
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
class StructuredColumnSchema extends AbstractColumnSchema
{
/**
* @var ColumnSchemaInterface[] Columns metadata of the composite type.
* @var ColumnSchemaInterface[] Columns metadata of the structured type.
* @psalm-var array<string, ColumnSchemaInterface>
*/
private array $columns = [];
@@ -40,9 +40,9 @@ public function __construct(
}

/**
* Set columns of the composite type.
* Set columns of the structured type.
*
* @param ColumnSchemaInterface[] $columns The metadata of the composite type columns.
* @param ColumnSchemaInterface[] $columns The metadata of the structured type columns.
* @psalm-param array<string, ColumnSchemaInterface> $columns
*/
public function columns(array $columns): static
@@ -52,7 +52,7 @@ public function columns(array $columns): static
}

/**
* Get the metadata of the composite type columns.
* Get the metadata of the structured type columns.
*
* @return ColumnSchemaInterface[]
*/