Skip to content

Commit 5f9cf53

Browse files
author
Alexander Paliarush
committed
MAGETWO-32354: Move Magento\Core\Model\Url\RouteParamsResolver.php to Framework
- Moved Magento\Store\Model\StoreManagerInterface to Magento\Framework\Store\StoreManagerInterface to avoid dependencies on application from the lib
1 parent e45084e commit 5f9cf53

File tree

638 files changed

+1442
-1440
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

638 files changed

+1442
-1440
lines changed

app/code/Magento/AdminNotification/Model/System/Message/Baseurl.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Baseurl implements \Magento\Framework\Notification\MessageInterface
1818
protected $_config;
1919

2020
/**
21-
* @var \Magento\Store\Model\StoreManagerInterface
21+
* @var \Magento\Framework\Store\StoreManagerInterface
2222
*/
2323
protected $_storeManager;
2424

@@ -29,13 +29,13 @@ class Baseurl implements \Magento\Framework\Notification\MessageInterface
2929

3030
/**
3131
* @param \Magento\Framework\App\Config\ScopeConfigInterface $config
32-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
32+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
3333
* @param \Magento\Framework\UrlInterface $urlBuilder
3434
* @param \Magento\Framework\App\Config\ValueFactory $configValueFactory
3535
*/
3636
public function __construct(
3737
\Magento\Framework\App\Config\ScopeConfigInterface $config,
38-
\Magento\Store\Model\StoreManagerInterface $storeManager,
38+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
3939
\Magento\Framework\UrlInterface $urlBuilder,
4040
\Magento\Framework\App\Config\ValueFactory $configValueFactory
4141
) {

app/code/Magento/Backend/App/Router.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Router extends \Magento\Core\App\Router\Base
5353
* @param \Magento\Framework\App\ResponseFactory $responseFactory
5454
* @param \Magento\Framework\App\Route\ConfigInterface $routeConfig
5555
* @param \Magento\Framework\UrlInterface $url
56-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
56+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
5757
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
5858
* @param \Magento\Framework\Url\SecurityInfoInterface $urlSecurityInfo
5959
* @param string $routerId
@@ -70,7 +70,7 @@ public function __construct(
7070
\Magento\Framework\App\ResponseFactory $responseFactory,
7171
\Magento\Framework\App\Route\ConfigInterface $routeConfig,
7272
\Magento\Framework\UrlInterface $url,
73-
\Magento\Store\Model\StoreManagerInterface $storeManager,
73+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
7474
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
7575
\Magento\Framework\Url\SecurityInfoInterface $urlSecurityInfo,
7676
$routerId,

app/code/Magento/Backend/Block/Template/Context.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class Context extends \Magento\Framework\View\Element\Template\Context
6666
* @param \Magento\Framework\View\FileSystem $viewFileSystem
6767
* @param \Magento\Framework\View\TemplateEnginePool $enginePool
6868
* @param \Magento\Framework\App\State $appState
69-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
69+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
7070
* @param \Magento\Framework\View\Page\Config $pageConfig
7171
* @param \Magento\Framework\AuthorizationInterface $authorization
7272
* @param \Magento\Backend\Model\Session $backendSession
@@ -99,7 +99,7 @@ public function __construct(
9999
\Magento\Framework\View\FileSystem $viewFileSystem,
100100
\Magento\Framework\View\TemplateEnginePool $enginePool,
101101
\Magento\Framework\App\State $appState,
102-
\Magento\Store\Model\StoreManagerInterface $storeManager,
102+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
103103
\Magento\Framework\View\Page\Config $pageConfig,
104104
\Magento\Framework\AuthorizationInterface $authorization,
105105
\Magento\Backend\Model\Session $backendSession,
@@ -143,7 +143,7 @@ public function __construct(
143143
/**
144144
* Get store manager
145145
*
146-
* @return \Magento\Store\Model\StoreManagerInterface
146+
* @return \Magento\Framework\Store\StoreManagerInterface
147147
*/
148148
public function getStoreManager()
149149
{

app/code/Magento/Backend/Block/Widget/Context.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Context extends \Magento\Backend\Block\Template\Context
4949
* @param \Magento\Framework\View\FileSystem $viewFileSystem
5050
* @param \Magento\Framework\View\TemplateEnginePool $enginePool
5151
* @param \Magento\Framework\App\State $appState
52-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
52+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
5353
* @param \Magento\Framework\AuthorizationInterface $authorization
5454
* @param \Magento\Backend\Model\Session $backendSession
5555
* @param \Magento\Framework\Math\Random $mathRandom
@@ -84,7 +84,7 @@ public function __construct(
8484
\Magento\Framework\View\FileSystem $viewFileSystem,
8585
\Magento\Framework\View\TemplateEnginePool $enginePool,
8686
\Magento\Framework\App\State $appState,
87-
\Magento\Store\Model\StoreManagerInterface $storeManager,
87+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
8888
\Magento\Framework\View\Page\Config $pageConfig,
8989
\Magento\Framework\AuthorizationInterface $authorization,
9090
\Magento\Backend\Model\Session $backendSession,

app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/Currency.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Currency extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Abstra
2727
/**
2828
* Application object
2929
*
30-
* @var \Magento\Store\Model\StoreManagerInterface
30+
* @var \Magento\Framework\Store\StoreManagerInterface
3131
*/
3232
protected $_storeManager;
3333

@@ -48,15 +48,15 @@ class Currency extends \Magento\Backend\Block\Widget\Grid\Column\Renderer\Abstra
4848

4949
/**
5050
* @param \Magento\Backend\Block\Context $context
51-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
51+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
5252
* @param \Magento\Directory\Model\Currency\DefaultLocator $currencyLocator
5353
* @param \Magento\Directory\Model\CurrencyFactory $currencyFactory
5454
* @param \Magento\Framework\Locale\CurrencyInterface $localeCurrency
5555
* @param array $data
5656
*/
5757
public function __construct(
5858
\Magento\Backend\Block\Context $context,
59-
\Magento\Store\Model\StoreManagerInterface $storeManager,
59+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
6060
\Magento\Directory\Model\Currency\DefaultLocator $currencyLocator,
6161
\Magento\Directory\Model\CurrencyFactory $currencyFactory,
6262
\Magento\Framework\Locale\CurrencyInterface $localeCurrency,

app/code/Magento/Backend/Helper/Dashboard/Data.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Data extends \Magento\Core\Helper\Data
3030
/**
3131
* @param \Magento\Framework\App\Helper\Context $context
3232
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
33-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
33+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
3434
* @param \Magento\Framework\App\State $appState
3535
* @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency
3636
* @param DeploymentConfig $deploymentConfig
@@ -39,7 +39,7 @@ class Data extends \Magento\Core\Helper\Data
3939
public function __construct(
4040
\Magento\Framework\App\Helper\Context $context,
4141
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
42-
\Magento\Store\Model\StoreManagerInterface $storeManager,
42+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
4343
\Magento\Framework\App\State $appState,
4444
\Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency,
4545
DeploymentConfig $deploymentConfig,

app/code/Magento/Backend/Helper/Dashboard/Order.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Order extends \Magento\Backend\Helper\Dashboard\AbstractDashboard
1818
/**
1919
* @param \Magento\Framework\App\Helper\Context $context
2020
* @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
21-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
21+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
2222
* @param \Magento\Framework\App\State $appState
2323
* @param \Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency
2424
* @param \Magento\Reports\Model\Resource\Order\Collection $orderCollection
@@ -27,7 +27,7 @@ class Order extends \Magento\Backend\Helper\Dashboard\AbstractDashboard
2727
public function __construct(
2828
\Magento\Framework\App\Helper\Context $context,
2929
\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig,
30-
\Magento\Store\Model\StoreManagerInterface $storeManager,
30+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
3131
\Magento\Framework\App\State $appState,
3232
\Magento\Framework\Pricing\PriceCurrencyInterface $priceCurrency,
3333
\Magento\Reports\Model\Resource\Order\Collection $orderCollection,

app/code/Magento/Backend/Model/Config.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class Config extends \Magento\Framework\Object
7070
protected $_configValueFactory;
7171

7272
/**
73-
* @var \Magento\Store\Model\StoreManagerInterface
73+
* @var \Magento\Framework\Store\StoreManagerInterface
7474
*/
7575
protected $_storeManager;
7676

@@ -81,7 +81,7 @@ class Config extends \Magento\Framework\Object
8181
* @param \Magento\Framework\DB\TransactionFactory $transactionFactory
8282
* @param \Magento\Backend\Model\Config\Loader $configLoader
8383
* @param \Magento\Framework\App\Config\ValueFactory $configValueFactory
84-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
84+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
8585
* @param array $data
8686
*/
8787
public function __construct(
@@ -91,7 +91,7 @@ public function __construct(
9191
\Magento\Framework\DB\TransactionFactory $transactionFactory,
9292
\Magento\Backend\Model\Config\Loader $configLoader,
9393
\Magento\Framework\App\Config\ValueFactory $configValueFactory,
94-
\Magento\Store\Model\StoreManagerInterface $storeManager,
94+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
9595
array $data = []
9696
) {
9797
parent::__construct($data);

app/code/Magento/Backend/Model/Config/Backend/Admin/Observer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Observer
3232
protected $_response;
3333

3434
/**
35-
* @var \Magento\Store\Model\StoreManagerInterface
35+
* @var \Magento\Framework\Store\StoreManagerInterface
3636
*/
3737
protected $_storeManager;
3838

@@ -48,7 +48,7 @@ public function __construct(
4848
\Magento\Framework\Registry $coreRegistry,
4949
\Magento\Backend\Model\Auth\Session $authSession,
5050
\Magento\Framework\App\ResponseInterface $response,
51-
\Magento\Store\Model\StoreManagerInterface $storeManager
51+
\Magento\Framework\Store\StoreManagerInterface $storeManager
5252
) {
5353
$this->_backendData = $backendData;
5454
$this->_coreRegistry = $coreRegistry;

app/code/Magento/Backend/Model/Config/Source/Website.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ class Website implements \Magento\Framework\Option\ArrayInterface
1313
protected $_options;
1414

1515
/**
16-
* @var \Magento\Store\Model\StoreManagerInterface
16+
* @var \Magento\Framework\Store\StoreManagerInterface
1717
*/
1818
protected $_storeManager;
1919

2020
/**
21-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
21+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
2222
*/
23-
public function __construct(\Magento\Store\Model\StoreManagerInterface $storeManager)
23+
public function __construct(\Magento\Framework\Store\StoreManagerInterface $storeManager)
2424
{
2525
$this->_storeManager = $storeManager;
2626
}

app/code/Magento/Backend/Model/Config/Structure/AbstractElement.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
namespace Magento\Backend\Model\Config\Structure;
77

8-
use Magento\Store\Model\StoreManagerInterface;
8+
use Magento\Framework\Store\StoreManagerInterface;
99

1010
abstract class AbstractElement implements ElementInterface
1111
{
@@ -26,12 +26,12 @@ abstract class AbstractElement implements ElementInterface
2626
/**
2727
* Store manager
2828
*
29-
* @var \Magento\Store\Model\StoreManagerInterface
29+
* @var \Magento\Framework\Store\StoreManagerInterface
3030
*/
3131
protected $_storeManager;
3232

3333
/**
34-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
34+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
3535
*/
3636
public function __construct(StoreManagerInterface $storeManager)
3737
{

app/code/Magento/Backend/Model/Config/Structure/Element/AbstractComposite.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ abstract class AbstractComposite extends \Magento\Backend\Model\Config\Structure
1515
protected $_childrenIterator;
1616

1717
/**
18-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
18+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
1919
* @param Iterator $childrenIterator
2020
*/
21-
public function __construct(\Magento\Store\Model\StoreManagerInterface $storeManager, Iterator $childrenIterator)
21+
public function __construct(\Magento\Framework\Store\StoreManagerInterface $storeManager, Iterator $childrenIterator)
2222
{
2323
parent::__construct($storeManager);
2424
$this->_childrenIterator = $childrenIterator;

app/code/Magento/Backend/Model/Config/Structure/Element/Field.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ class Field extends \Magento\Backend\Model\Config\Structure\AbstractElement
4949
protected $_blockFactory;
5050

5151
/**
52-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
52+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
5353
* @param \Magento\Backend\Model\Config\BackendFactory $backendFactory
5454
* @param \Magento\Backend\Model\Config\SourceFactory $sourceFactory
5555
* @param \Magento\Backend\Model\Config\CommentFactory $commentFactory
5656
* @param \Magento\Framework\View\Element\BlockFactory $blockFactory
5757
* @param \Magento\Backend\Model\Config\Structure\Element\Dependency\Mapper $dependencyMapper
5858
*/
5959
public function __construct(
60-
\Magento\Store\Model\StoreManagerInterface $storeManager,
60+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
6161
\Magento\Backend\Model\Config\BackendFactory $backendFactory,
6262
\Magento\Backend\Model\Config\SourceFactory $sourceFactory,
6363
\Magento\Backend\Model\Config\CommentFactory $commentFactory,

app/code/Magento/Backend/Model/Config/Structure/Element/Group.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ class Group extends AbstractComposite
2121
protected $_dependencyMapper;
2222

2323
/**
24-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
24+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
2525
* @param \Magento\Backend\Model\Config\Structure\Element\Iterator\Field $childrenIterator
2626
* @param \Magento\Backend\Model\Config\BackendClone\Factory $cloneModelFactory
2727
* @param \Magento\Backend\Model\Config\Structure\Element\Dependency\Mapper $dependencyMapper
2828
*/
2929
public function __construct(
30-
\Magento\Store\Model\StoreManagerInterface $storeManager,
30+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
3131
\Magento\Backend\Model\Config\Structure\Element\Iterator\Field $childrenIterator,
3232
\Magento\Backend\Model\Config\BackendClone\Factory $cloneModelFactory,
3333
\Magento\Backend\Model\Config\Structure\Element\Dependency\Mapper $dependencyMapper

app/code/Magento/Backend/Model/Config/Structure/Element/Section.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ class Section extends AbstractComposite
1515
protected $_authorization;
1616

1717
/**
18-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
18+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
1919
* @param Iterator $childrenIterator
2020
* @param \Magento\Framework\AuthorizationInterface $authorization
2121
*/
2222
public function __construct(
23-
\Magento\Store\Model\StoreManagerInterface $storeManager,
23+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
2424
Iterator $childrenIterator,
2525
\Magento\Framework\AuthorizationInterface $authorization
2626
) {

app/code/Magento/Backend/Model/Session/AdminConfig.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class AdminConfig extends Config
3030
protected $_frontNameResolver;
3131

3232
/**
33-
* @var \Magento\Store\Model\StoreManagerInterface
33+
* @var \Magento\Framework\Store\StoreManagerInterface
3434
*/
3535
protected $_storeManager;
3636

@@ -43,7 +43,7 @@ class AdminConfig extends Config
4343
* @param DeploymentConfig $deploymentConfig
4444
* @param string $scopeType
4545
* @param FrontNameResolver $frontNameResolver
46-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
46+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
4747
* @param string $lifetimePath
4848
* @param string $sessionName
4949
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
@@ -57,7 +57,7 @@ public function __construct(
5757
DeploymentConfig $deploymentConfig,
5858
$scopeType,
5959
FrontNameResolver $frontNameResolver,
60-
\Magento\Store\Model\StoreManagerInterface $storeManager,
60+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
6161
$lifetimePath = self::XML_PATH_COOKIE_LIFETIME,
6262
$sessionName = self::SESSION_NAME_ADMIN
6363
) {

app/code/Magento/Backend/Model/Session/Quote.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class Quote extends \Magento\Framework\Session\SessionManager
6464
protected $quoteRepository;
6565

6666
/**
67-
* @var \Magento\Store\Model\StoreManagerInterface
67+
* @var \Magento\Framework\Store\StoreManagerInterface
6868
*/
6969
protected $_storeManager;
7070

@@ -85,7 +85,7 @@ class Quote extends \Magento\Framework\Session\SessionManager
8585
* @param CustomerRepositoryInterface $customerRepository
8686
* @param \Magento\Quote\Model\QuoteRepository $quoteRepository
8787
* @param \Magento\Sales\Model\OrderFactory $orderFactory
88-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
88+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
8989
* @param GroupManagementInterface $groupManagement
9090
*/
9191
public function __construct(
@@ -100,7 +100,7 @@ public function __construct(
100100
CustomerRepositoryInterface $customerRepository,
101101
\Magento\Quote\Model\QuoteRepository $quoteRepository,
102102
\Magento\Sales\Model\OrderFactory $orderFactory,
103-
\Magento\Store\Model\StoreManagerInterface $storeManager,
103+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
104104
GroupManagementInterface $groupManagement
105105
) {
106106
$this->customerRepository = $customerRepository;

app/code/Magento/Bundle/Model/LinkManagement.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ class LinkManagement implements \Magento\Bundle\Api\ProductLinkManagementInterfa
4343
* @param \Magento\Bundle\Model\Resource\BundleFactory $bundleFactory
4444
* @param \Magento\Bundle\Model\SelectionFactory $bundleSelection
4545
* @param \Magento\Bundle\Model\Resource\Option\CollectionFactory $optionCollection
46-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
46+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
4747
*/
4848
public function __construct(
4949
ProductRepositoryInterface $productRepository,
5050
\Magento\Bundle\Api\Data\LinkDataBuilder $linkBuilder,
5151
\Magento\Bundle\Model\SelectionFactory $bundleSelection,
5252
\Magento\Bundle\Model\Resource\BundleFactory $bundleFactory,
5353
\Magento\Bundle\Model\Resource\Option\CollectionFactory $optionCollection,
54-
\Magento\Store\Model\StoreManagerInterface $storeManager
54+
\Magento\Framework\Store\StoreManagerInterface $storeManager
5555
) {
5656
$this->productRepository = $productRepository;
5757
$this->linkBuilder = $linkBuilder;

app/code/Magento/Bundle/Model/OptionRepository.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class OptionRepository implements \Magento\Bundle\Api\ProductOptionRepositoryInt
5757
* @param Product\Type $type
5858
* @param \Magento\Bundle\Api\Data\OptionDataBuilder $optionBuilder
5959
* @param Resource\Option $optionResource
60-
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
60+
* @param \Magento\Framework\Store\StoreManagerInterface $storeManager
6161
* @param \Magento\Bundle\Api\ProductLinkManagementInterface $linkManagement
6262
* @param Product\OptionList $productOptionList
6363
* @param Product\LinksList $linkList
@@ -67,7 +67,7 @@ public function __construct(
6767
\Magento\Bundle\Model\Product\Type $type,
6868
\Magento\Bundle\Api\Data\OptionDataBuilder $optionBuilder,
6969
\Magento\Bundle\Model\Resource\Option $optionResource,
70-
\Magento\Store\Model\StoreManagerInterface $storeManager,
70+
\Magento\Framework\Store\StoreManagerInterface $storeManager,
7171
\Magento\Bundle\Api\ProductLinkManagementInterface $linkManagement,
7272
\Magento\Bundle\Model\Product\OptionList $productOptionList,
7373
\Magento\Bundle\Model\Product\LinksList $linkList

0 commit comments

Comments
 (0)