File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
app/code/Magento/CatalogSearch/Model/Search Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -35,18 +35,13 @@ class TableMapper
35
35
*/
36
36
private $ storeManager ;
37
37
38
- /**
39
- * @var \Magento\Catalog\Model\ResourceModel\Product\Attribute\Collection
40
- * @deprecated
41
- */
42
- private $ attributeCollection ;
43
-
44
38
/**
45
39
* @var EavConfig
46
40
*/
47
41
private $ eavConfig ;
48
42
49
43
/**
44
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
50
45
* @param AppResource $resource
51
46
* @param StoreManagerInterface $storeManager
52
47
* @param CollectionFactory $attributeCollectionFactory
@@ -60,7 +55,6 @@ public function __construct(
60
55
) {
61
56
$ this ->resource = $ resource ;
62
57
$ this ->storeManager = $ storeManager ;
63
- $ this ->attributeCollection = $ attributeCollectionFactory ->create ();
64
58
$ this ->eavConfig = $ eavConfig !== null ? $ eavConfig : ObjectManager::getInstance ()->get (EavConfig::class);
65
59
}
66
60
@@ -116,7 +110,8 @@ public function getMappingAlias(FilterInterface $filter)
116
110
* 'table_alias',
117
111
* 'table',
118
112
* 'join_condition',
119
- * ['fields']
113
+ * ['fields'],
114
+ * 'joinType'
120
115
* ]
121
116
* @param FilterInterface $filter
122
117
* @return array
You can’t perform that action at this time.
0 commit comments