File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
app/code/Magento/Catalog/Model/Product/Attribute Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -115,13 +115,15 @@ public function save(\Magento\Catalog\Api\Data\ProductAttributeInterface $attrib
115
115
if (in_array ($ attribute ->getFrontendInput (), self ::FILTERABLE_ALLOWED_INPUT_TYPES )) {
116
116
if ($ attribute ->getIsFilterable ()) {
117
117
throw InputException::invalidFieldValue (
118
- EavAttributeInterface::IS_FILTERABLE , $ attribute ->getIsFilterable ()
118
+ EavAttributeInterface::IS_FILTERABLE ,
119
+ $ attribute ->getIsFilterable ()
119
120
);
120
121
}
121
122
122
123
if ($ attribute ->getIsFilterableInSearch ()) {
123
124
throw InputException::invalidFieldValue (
124
- EavAttributeInterface::IS_FILTERABLE_IN_SEARCH , $ attribute ->getIsFilterableInSearch ()
125
+ EavAttributeInterface::IS_FILTERABLE_IN_SEARCH ,
126
+ $ attribute ->getIsFilterableInSearch ()
125
127
);
126
128
}
127
129
}
You can’t perform that action at this time.
0 commit comments