@@ -58,13 +58,13 @@ |
||
58 | 58 | $artefacts = array(); |
59 | 59 | |
60 | 60 | // load the attribute option values/positions |
61 | - $attributeOptionValues = $this->getValue(ColumnKeys::ATTRIBUTE_OPTION_VALUES, array(), function ($value) { |
|
61 | + $attributeOptionValues = $this->getValue(ColumnKeys::ATTRIBUTE_OPTION_VALUES, array(), function($value) { |
|
62 | 62 | return $this->explode($value, $this->getMultipleFieldDelimiter()); |
63 | 63 | }); |
64 | - $attributeOptionSortOrder = $this->getValue(ColumnKeys::ATTRIBUTE_OPTION_SORT_ORDER, array(), function ($value) { |
|
64 | + $attributeOptionSortOrder = $this->getValue(ColumnKeys::ATTRIBUTE_OPTION_SORT_ORDER, array(), function($value) { |
|
65 | 65 | return $this->explode($value, $this->getMultipleFieldDelimiter()); |
66 | 66 | }); |
67 | - $attributeOptionSwatch = $this->getValue(ColumnKeys::ATTRIBUTE_OPTION_SWATCH, array(), function ($value) { |
|
67 | + $attributeOptionSwatch = $this->getValue(ColumnKeys::ATTRIBUTE_OPTION_SWATCH, array(), function($value) { |
|
68 | 68 | return $this->explode($value, $this->getMultipleValueDelimiter()); |
69 | 69 | }); |
70 | 70 |
@@ -24,7 +24,6 @@ |
||
24 | 24 | use TechDivision\Import\Subjects\EntitySubjectInterface; |
25 | 25 | use TechDivision\Import\Utils\RegistryKeys; |
26 | 26 | use TechDivision\Import\Attribute\Utils\MemberNames; |
27 | -use TechDivision\Import\Utils\EntityTypeCodes; |
|
28 | 27 | |
29 | 28 | /** |
30 | 29 | * The abstract product subject implementation that provides basic attribute |