Skip to content

Commit bb7dedb

Browse files
committed
ACP2E-2990: Customer "created_at" date Not Converted to store time zone upon export
- Fixed the existing build failures.
1 parent 6dce4bd commit bb7dedb

File tree

1 file changed

+2
-2
lines changed
  • app/code/Magento/CustomerImportExport/Model/Export

1 file changed

+2
-2
lines changed

app/code/Magento/CustomerImportExport/Model/Export/Customer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Customer extends \Magento\ImportExport\Model\Export\Entity\AbstractEav
2727

2828
public const COLUMN_STORE = '_store';
2929

30-
public const COLUMN_CREATED_AT = 'created_at';
30+
private const COLUMN_CREATED_AT = 'created_at';
3131

3232
/**
3333
* A constant declaration for attribute collection name
@@ -37,7 +37,7 @@ class Customer extends \Magento\ImportExport\Model\Export\Entity\AbstractEav
3737
/**
3838
* XML path to page size parameter
3939
*/
40-
private const XML_PATH_PAGE_SIZE = 'export/customer_page_size/customer';
40+
public const XML_PATH_PAGE_SIZE = 'export/customer_page_size/customer';
4141

4242
/**
4343
* @var array

0 commit comments

Comments
 (0)