We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4630a9b commit 8632e6dCopy full SHA for 8632e6d
app/code/Magento/CatalogImportExport/Model/Export/Product.php
@@ -717,11 +717,11 @@ public function _getHeaderColumns()
717
718
* @return array
719
*/
720
- private function getNonSystemAttributes()
+ private function getNonSystemAttributes(): array
721
{
722
$attrKeys = [];
723
foreach ($this->filterAttributeCollection($this->getAttributeCollection()) as $attribute) {
724
- $attrKeys []= $attribute->getAttributeCode();
+ $attrKeys[] = $attribute->getAttributeCode();
725
}
726
727
return array_diff($this->_getExportMainAttrCodes(), $this->_customHeadersMapping($attrKeys));
0 commit comments