We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 784099e commit 382d685Copy full SHA for 382d685
app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php
@@ -394,6 +394,19 @@ public function getProductOptions()
394
return [];
395
}
396
397
+ /**
398
+ * @param float $price Price of option
399
+ * @param boolean $isPercent Price type - percent or fixed
400
+ * @param float $basePrice For percent price type
401
+ * @return float
402
+ * @deprecated 102.0.4 typo in method name
403
+ * @see _getChargeableOptionPrice
404
+ */
405
+ protected function _getChargableOptionPrice($price, $isPercent, $basePrice)
406
+ {
407
+ return $this->_getChargeableOptionPrice($price, $isPercent, $basePrice);
408
+ }
409
+
410
/**
411
* Return final chargeable price for option
412
*
0 commit comments