Skip to content

Commit 2b5ee3d

Browse files
committed
MAGETWO-91798: Implement GroupedProduct Price indexer
1 parent 04d520e commit 2b5ee3d

File tree

1 file changed

+0
-16
lines changed
  • app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price

1 file changed

+0
-16
lines changed

app/code/Magento/GroupedProduct/Model/ResourceModel/Product/Indexer/Price/Grouped.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@
3030
*/
3131
class Grouped implements DimensionalIndexerInterface
3232
{
33-
/**
34-
* @var BaseFinalPrice
35-
*/
36-
private $baseFinalPrice;
37-
3833
/**
3934
* @var IndexTableStructureFactory
4035
*/
@@ -70,46 +65,35 @@ class Grouped implements DimensionalIndexerInterface
7065
*/
7166
private $priceModifiers;
7267

73-
/**
74-
* @var Config
75-
*/
76-
private $eavConfig;
77-
7868
/**
7969
* @var bool
8070
*/
8171
private $fullReindexAction;
8272

8373
/**
84-
* @param BaseFinalPrice $baseFinalPrice
8574
* @param IndexTableStructureFactory $indexTableStructureFactory
8675
* @param TableMaintainer $tableMaintainer
8776
* @param MetadataPool $metadataPool
88-
* @param Config $eavConfig
8977
* @param ResourceConnection $resource
9078
* @param string $connectionName
9179
* @param bool $fullReindexAction
9280
* @param array $priceModifiers
9381
*/
9482
public function __construct(
95-
BaseFinalPrice $baseFinalPrice,
9683
IndexTableStructureFactory $indexTableStructureFactory,
9784
TableMaintainer $tableMaintainer,
9885
MetadataPool $metadataPool,
99-
Config $eavConfig,
10086
ResourceConnection $resource,
10187
$connectionName = 'indexer',
10288
$fullReindexAction = false,
10389
array $priceModifiers = []
10490
) {
105-
$this->baseFinalPrice = $baseFinalPrice;
10691
$this->indexTableStructureFactory = $indexTableStructureFactory;
10792
$this->tableMaintainer = $tableMaintainer;
10893
$this->connectionName = $connectionName;
10994
$this->priceModifiers = $priceModifiers;
11095
$this->metadataPool = $metadataPool;
11196
$this->resource = $resource;
112-
$this->eavConfig = $eavConfig;
11397
$this->fullReindexAction = $fullReindexAction;
11498
$this->connection = $this->resource->getConnection($this->connectionName);
11599
}

0 commit comments

Comments
 (0)