|
30 | 30 | */
|
31 | 31 | class Grouped implements DimensionalIndexerInterface
|
32 | 32 | {
|
33 |
| - /** |
34 |
| - * @var BaseFinalPrice |
35 |
| - */ |
36 |
| - private $baseFinalPrice; |
37 |
| - |
38 | 33 | /**
|
39 | 34 | * @var IndexTableStructureFactory
|
40 | 35 | */
|
@@ -70,46 +65,35 @@ class Grouped implements DimensionalIndexerInterface
|
70 | 65 | */
|
71 | 66 | private $priceModifiers;
|
72 | 67 |
|
73 |
| - /** |
74 |
| - * @var Config |
75 |
| - */ |
76 |
| - private $eavConfig; |
77 |
| - |
78 | 68 | /**
|
79 | 69 | * @var bool
|
80 | 70 | */
|
81 | 71 | private $fullReindexAction;
|
82 | 72 |
|
83 | 73 | /**
|
84 |
| - * @param BaseFinalPrice $baseFinalPrice |
85 | 74 | * @param IndexTableStructureFactory $indexTableStructureFactory
|
86 | 75 | * @param TableMaintainer $tableMaintainer
|
87 | 76 | * @param MetadataPool $metadataPool
|
88 |
| - * @param Config $eavConfig |
89 | 77 | * @param ResourceConnection $resource
|
90 | 78 | * @param string $connectionName
|
91 | 79 | * @param bool $fullReindexAction
|
92 | 80 | * @param array $priceModifiers
|
93 | 81 | */
|
94 | 82 | public function __construct(
|
95 |
| - BaseFinalPrice $baseFinalPrice, |
96 | 83 | IndexTableStructureFactory $indexTableStructureFactory,
|
97 | 84 | TableMaintainer $tableMaintainer,
|
98 | 85 | MetadataPool $metadataPool,
|
99 |
| - Config $eavConfig, |
100 | 86 | ResourceConnection $resource,
|
101 | 87 | $connectionName = 'indexer',
|
102 | 88 | $fullReindexAction = false,
|
103 | 89 | array $priceModifiers = []
|
104 | 90 | ) {
|
105 |
| - $this->baseFinalPrice = $baseFinalPrice; |
106 | 91 | $this->indexTableStructureFactory = $indexTableStructureFactory;
|
107 | 92 | $this->tableMaintainer = $tableMaintainer;
|
108 | 93 | $this->connectionName = $connectionName;
|
109 | 94 | $this->priceModifiers = $priceModifiers;
|
110 | 95 | $this->metadataPool = $metadataPool;
|
111 | 96 | $this->resource = $resource;
|
112 |
| - $this->eavConfig = $eavConfig; |
113 | 97 | $this->fullReindexAction = $fullReindexAction;
|
114 | 98 | $this->connection = $this->resource->getConnection($this->connectionName);
|
115 | 99 | }
|
|
0 commit comments