Change references to "orders" to "entities" in generic table migrators

This commit is contained in:
Nestor Soriano 2022-05-19 09:48:04 +02:00
parent c4b498d13f
commit 469c5a1aea
No known key found for this signature in database
GPG Key ID: 08110F3518C12CAD
2 changed files with 4 additions and 4 deletions

View File

@ -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
*/

View File

@ -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 );