Skip to content

Commit a557d40

Browse files
committed
magento-engcom/import-export-improvements#49: update line length to match coding standards
1 parent 93ba0ab commit a557d40

File tree

1 file changed

+2
-1
lines changed
  • app/code/Magento/CatalogImportExport/Model/Import/Product

1 file changed

+2
-1
lines changed

app/code/Magento/CatalogImportExport/Model/Import/Product/Option.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
use Magento\Catalog\Model\ResourceModel\Product\Option\Value\Collection as ProductOptionValueCollection;
1414
use Magento\Catalog\Model\ResourceModel\Product\Option\Value\CollectionFactory as ProductOptionValueCollectionFactory;
1515
use Magento\Store\Model\Store;
16+
use Magento\ImportExport\Model\Import;
1617

1718
/**
1819
* Entity class which provide possibility to import product custom options
@@ -1924,7 +1925,7 @@ protected function _parseCustomOptions($rowData)
19241925
{
19251926
$beforeOptionValueSkuDelimiter = ';';
19261927
if (empty($rowData['custom_options'])
1927-
|| $rowData['custom_options'] === \Magento\ImportExport\Model\Import::DEFAULT_EMPTY_ATTRIBUTE_VALUE_CONSTANT) {
1928+
|| $rowData['custom_options'] === Import::DEFAULT_EMPTY_ATTRIBUTE_VALUE_CONSTANT) {
19281929
return $rowData;
19291930
}
19301931
$rowData['custom_options'] = str_replace(

0 commit comments

Comments
 (0)