Skip to content

Commit 8149479

Browse files
authored
Minor code style fixes
1 parent d1b7097 commit 8149479

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Catalog/Model/ProductRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
namespace Magento\Catalog\Model;
99

10+
use Magento\Catalog\Api\CategoryLinkManagementInterface;
1011
use Magento\Catalog\Api\Data\ProductExtension;
1112
use Magento\Catalog\Api\Data\ProductInterface;
1213
use Magento\Catalog\Model\Product\Gallery\MimeTypeExtensionMap;
1314
use Magento\Catalog\Model\ResourceModel\Product\Collection;
14-
use Magento\Catalog\Api\CategoryLinkManagementInterface;
1515
use Magento\Eav\Model\Entity\Attribute\Exception as AttributeException;
1616
use Magento\Framework\Api\Data\ImageContentInterface;
1717
use Magento\Framework\Api\Data\ImageContentInterfaceFactory;
@@ -247,7 +247,7 @@ public function __construct(
247247
$this->cacheLimit = (int)$cacheLimit;
248248
$this->readExtensions = $readExtensions ?: \Magento\Framework\App\ObjectManager::getInstance()
249249
->get(ReadExtensions::class);
250-
$this->linkManagement = $linkManagement ?:\Magento\Framework\App\ObjectManager::getInstance()
250+
$this->linkManagement = $linkManagement ?: \Magento\Framework\App\ObjectManager::getInstance()
251251
->get(CategoryLinkManagementInterface::class);
252252
}
253253

0 commit comments

Comments
 (0)