Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion src/Platforms/MySQL/Comparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
*/
class Comparator extends BaseComparator
{
/** @internal The comparator can be only instantiated by a schema manager. */
public function __construct(
AbstractMySQLPlatform $platform,
private readonly CharsetMetadataProvider $charsetMetadataProvider,
Expand Down
1 change: 0 additions & 1 deletion src/Platforms/SQLServer/Comparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*/
class Comparator extends BaseComparator
{
/** @internal The comparator can be only instantiated by a schema manager. */
public function __construct(
SQLServerPlatform $platform,
private readonly string $databaseCollation,
Expand Down
1 change: 0 additions & 1 deletion src/Platforms/SQLite/Comparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
*/
class Comparator extends BaseComparator
{
/** @internal The comparator can be only instantiated by a schema manager. */
public function __construct(SQLitePlatform $platform, ComparatorConfig $config = new ComparatorConfig())
{
parent::__construct($platform, $config);
Expand Down
1 change: 0 additions & 1 deletion src/Schema/ColumnDiff.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
*/
class ColumnDiff
{
/** @internal The diff can be only instantiated by a {@see Comparator}. */
public function __construct(private readonly Column $oldColumn, private readonly Column $newColumn)
{
}
Expand Down
1 change: 0 additions & 1 deletion src/Schema/Comparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*/
class Comparator
{
/** @internal The comparator can be only instantiated by a schema manager. */
public function __construct(
private readonly AbstractPlatform $platform,
private readonly ComparatorConfig $config = new ComparatorConfig(),
Expand Down
2 changes: 0 additions & 2 deletions src/Schema/SchemaDiff.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ class SchemaDiff
/**
* Constructs an SchemaDiff object.
*
* @internal The diff can be only instantiated by a {@see Comparator}.
*
* @param array<string> $createdSchemas
* @param array<string> $droppedSchemas
* @param array<Table> $createdTables
Expand Down
2 changes: 0 additions & 2 deletions src/Schema/TableDiff.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ class TableDiff
/**
* Constructs a TableDiff object.
*
* @internal The diff can be only instantiated by a {@see Comparator}.
*
* @param array<ForeignKeyConstraint> $droppedForeignKeys
* @param array<Column> $addedColumns
* @param array<string, ColumnDiff> $changedColumns
Expand Down