Skip to content

Commit 32f9aa9

Browse files
committed
ACP2E-2990: Customer "created_at" date Not Converted to store time zone upon export
- Fixed the build error.
1 parent 3dba110 commit 32f9aa9

File tree

1 file changed

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

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ class Customer extends \Magento\ImportExport\Model\Export\Entity\AbstractEav
2121
* Names that begins with underscore is not an attribute. This name convention is for
2222
* to avoid interference with same attribute name.
2323
*/
24-
private const COLUMN_EMAIL = 'email';
24+
public const COLUMN_EMAIL = 'email';
2525

26-
private const COLUMN_WEBSITE = '_website';
26+
public const COLUMN_WEBSITE = '_website';
2727

28-
private const COLUMN_STORE = '_store';
28+
public const COLUMN_STORE = '_store';
2929

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

3232
/**
3333
* A constant declaration for attribute collection name
3434
*/
35-
private const ATTRIBUTE_COLLECTION_NAME = \Magento\Customer\Model\ResourceModel\Attribute\Collection::class;
35+
public const ATTRIBUTE_COLLECTION_NAME = \Magento\Customer\Model\ResourceModel\Attribute\Collection::class;
3636

3737
/**
3838
* XML path to page size parameter

0 commit comments

Comments
 (0)