diff --git a/tests/Fixtures/BuyableProduct.php b/tests/Fixtures/BuyableProduct.php index 9265aab..18de007 100644 --- a/tests/Fixtures/BuyableProduct.php +++ b/tests/Fixtures/BuyableProduct.php @@ -68,4 +68,9 @@ class BuyableProduct extends Model implements Buyable { return $this->weight; } + + public function getBuyableTaxRate(CartItemOptions $options): float + { + return $this->tax_rate; + } }