File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/code/Magento/ImportExport/Model/Export/Entity Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ abstract class AbstractEav extends \Magento\ImportExport\Model\Export\AbstractEn
33
33
*
34
34
* @var array
35
35
*/
36
- protected $ _attributeTypes = [];
36
+ protected $ attributeTypes = [];
37
37
38
38
/**
39
39
* Entity type id.
@@ -105,7 +105,7 @@ protected function _initAttributeTypes()
105
105
{
106
106
/** @var $attribute AbstractAttribute */
107
107
foreach ($ this ->getAttributeCollection () as $ attribute ) {
108
- $ this ->_attributeTypes [$ attribute ->getAttributeCode ()] = $ attribute ->getFrontendInput ();
108
+ $ this ->attributeTypes [$ attribute ->getAttributeCode ()] = $ attribute ->getFrontendInput ();
109
109
}
110
110
return $ this ;
111
111
}
@@ -291,8 +291,8 @@ protected function _addAttributeValuesToRow(\Magento\Framework\Model\AbstractMod
291
291
*/
292
292
private function isMultiselect ($ attributeCode )
293
293
{
294
- return isset ($ this ->_attributeTypes [$ attributeCode ])
295
- && $ this ->_attributeTypes [$ attributeCode ] === 'multiselect ' ;
294
+ return isset ($ this ->attributeTypes [$ attributeCode ])
295
+ && $ this ->attributeTypes [$ attributeCode ] === 'multiselect ' ;
296
296
}
297
297
298
298
/**
You can’t perform that action at this time.
0 commit comments