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 ef68020 commit 8ea661cCopy full SHA for 8ea661c
app/code/Magento/Catalog/Model/Product/Option/Type/DefaultType.php
@@ -391,6 +391,19 @@ public function getProductOptions()
391
return [];
392
}
393
394
+ /**
395
+ * @param float $price Price of option
396
+ * @param boolean $isPercent Price type - percent or fixed
397
+ * @param float $basePrice For percent price type
398
+ * @return float
399
+ * @deprecated 102.0.4 typo in method name
400
+ * @see _getChargeableOptionPrice
401
+ */
402
+ protected function _getChargableOptionPrice($price, $isPercent, $basePrice)
403
+ {
404
+ return $this->_getChargeableOptionPrice($price, $isPercent, $basePrice);
405
+ }
406
+
407
/**
408
* Return final chargeable price for option
409
*
0 commit comments