Skip to content

Commit f63ae11

Browse files
committed
MAGETWO-54682: Fast load of product options
- fix tests
1 parent 90d0124 commit f63ae11

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Magento/Catalog/Model/ResourceModel/Product/ProductProviderByBasePrice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function getSelect($productId)
7676

7777
if (!$this->catalogHelper->isPriceGlobal()) {
7878
$priceSelect->where('t.store_id = ?', $this->storeManager->getStore()->getId());
79-
$select[] = $priceSelect;;
79+
$select[] = $priceSelect;
8080
}
8181

8282
return $select;

app/code/Magento/ConfigurableProduct/Model/ResourceModel/Product/Type/Configurable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ public function getConfigurableOptions($product, $attributes)
176176
/**
177177
* Load options for attribute
178178
*
179-
* @param $superAttribute
180-
* @param $productId
179+
* @param \Magento\Eav\Model\Entity\Attribute\AbstractAttribute $superAttribute
180+
* @param int $productId
181181
* @return array
182182
*/
183183
public function getAttributeOptions($superAttribute, $productId)

0 commit comments

Comments
 (0)