Skip to content

Commit 4b2057d

Browse files
committed
Merge remote-tracking branch 'tsg/MC-20156' into borg-2.3.4
2 parents d082d6c + adc09cb commit 4b2057d

File tree

1 file changed

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

1 file changed

+5
-4
lines changed

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

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

2828
const COLUMN_STORE = '_store';
2929

30-
/**
31-
* Attribute collection name
30+
/** Attribute collection name.
31+
*
32+
* Used to resolve entity attribute collection.
3233
*/
3334
const ATTRIBUTE_COLLECTION_NAME = \Magento\Customer\Model\ResourceModel\Attribute\Collection::class;
3435

@@ -139,12 +140,12 @@ protected function _getEntityCollection()
139140
}
140141

141142
/**
142-
* {@inheritdoc}
143+
* @inheritdoc
143144
*/
144145
protected function _getHeaderColumns()
145146
{
146147
$validAttributeCodes = $this->_getExportAttributeCodes();
147-
return array_merge($this->_permanentAttributes, $validAttributeCodes, ['password']);
148+
return array_merge($this->_permanentAttributes, $validAttributeCodes);
148149
}
149150

150151
/**

0 commit comments

Comments
 (0)