Coding standard fix.

This commit is contained in:
Vedanshu Jain 2023-01-25 17:17:00 +05:30
parent e75ff70a87
commit 4db8cc8e26
1 changed files with 4 additions and 4 deletions

View File

@ -90,10 +90,10 @@ class DataSynchronizer implements BatchProcessorInterface {
PostsToOrdersMigrationController $posts_to_cot_migrator,
LegacyProxy $legacy_proxy
) {
$this->data_store = $data_store;
$this->database_util = $database_util;
$this->posts_to_cot_migrator = $posts_to_cot_migrator;
$this->error_logger = $legacy_proxy->call_function( 'wc_get_logger' );
$this->data_store = $data_store;
$this->database_util = $database_util;
$this->posts_to_cot_migrator = $posts_to_cot_migrator;
$this->error_logger = $legacy_proxy->call_function( 'wc_get_logger' );
}
/**