Skip to content

Commit b0366a2

Browse files
committed
MC-5806: Detection of URL dependencies does not work for the Dependency static test
-- fix merge conflict
1 parent 618dcf4 commit b0366a2

File tree

1 file changed

+4
-4
lines changed
  • app/code/Magento/Catalog/Block/Adminhtml/Product

1 file changed

+4
-4
lines changed

app/code/Magento/Catalog/Block/Adminhtml/Product/Grid.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
class Grid extends \Magento\Backend\Block\Widget\Grid\Extended
1717
{
1818
/**
19-
* @var \Magento\Framework\Module\Manager
19+
* @var \Magento\Framework\Module\ModuleManagerInterface
2020
*/
2121
protected $moduleManager;
2222

@@ -59,7 +59,7 @@ class Grid extends \Magento\Backend\Block\Widget\Grid\Extended
5959
* @param \Magento\Catalog\Model\Product\Type $type
6060
* @param \Magento\Catalog\Model\Product\Attribute\Source\Status $status
6161
* @param \Magento\Catalog\Model\Product\Visibility $visibility
62-
* @param \Magento\Framework\Module\Manager $moduleManager
62+
* @param \Magento\Framework\Module\ModuleManagerInterface $moduleManager
6363
* @param array $data
6464
*
6565
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
@@ -73,7 +73,7 @@ public function __construct(
7373
\Magento\Catalog\Model\Product\Type $type,
7474
\Magento\Catalog\Model\Product\Attribute\Source\Status $status,
7575
\Magento\Catalog\Model\Product\Visibility $visibility,
76-
\Magento\Framework\Module\Manager $moduleManager,
76+
\Magento\Framework\Module\ModuleManagerInterface $moduleManager,
7777
array $data = []
7878
) {
7979
$this->_websiteFactory = $websiteFactory;
@@ -101,7 +101,7 @@ protected function _construct()
101101
}
102102

103103
/**
104-
* Get store
104+
* Get store.
105105
*
106106
* @return Store
107107
* @throws \Magento\Framework\Exception\NoSuchEntityException

0 commit comments

Comments
 (0)