Update Buyable.php

This commit is contained in:
Patrick
2022-02-06 19:53:45 +01:00
committed by GitHub
parent 66ce04a150
commit 3f246caf1a

View File

@@ -28,4 +28,9 @@ interface Buyable
* Get the weight of the Buyable item.
*/
public function getBuyableWeight(CartItemOptions $options): int;
/**
* Get the taxRate of the Buyable item.
*/
public function getBuyableTaxRate(CartItemOptions $options): float
}