diff --git a/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php b/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php index f9ec4e29e25..fd3b899259c 100644 --- a/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php +++ b/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php @@ -216,9 +216,9 @@ abstract class MetaToCustomTableMigrator extends TableMigrator { } /** - * Migrate a batch of orders from the posts table to the corresponding table. + * Migrate a batch of entities from the posts table to the corresponding table. * - * @param array $entity_ids Ids of orders ro migrate. + * @param array $entity_ids Ids of entities to migrate. * * @return void */ diff --git a/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php b/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php index 305d419c1da..0fad471c326 100644 --- a/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php +++ b/plugins/woocommerce/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php @@ -63,9 +63,9 @@ abstract class MetaToMetaTableMigrator extends TableMigrator { } /** - * Migrate a batch of orders from the posts table to the corresponding table. + * Migrate a batch of entities from the posts table to the corresponding table. * - * @param array $entity_ids Ids of orders ro migrate. + * @param array $entity_ids Ids of entities ro migrate. */ protected function process_migration_batch_for_ids_core( array $entity_ids ): void { $to_migrate = $this->fetch_data_for_migration_for_ids( $entity_ids );