@@ -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 |